aboutsummaryrefslogtreecommitdiff
path: root/karma.conf.js
diff options
context:
space:
mode:
Diffstat (limited to 'karma.conf.js')
-rw-r--r--karma.conf.js12
1 files changed, 6 insertions, 6 deletions
diff --git a/karma.conf.js b/karma.conf.js
index 32da469..b422605 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -6,16 +6,16 @@ module.exports = function (config) {
basePath: '',
frameworks: ['mocha', 'sinon'],
files: [
- 'test/main.js',
- 'test/**/*.test.js',
- 'test/**/*.test.jsx',
+ 'test/main.ts',
+ 'test/**/*.test.ts',
+ 'test/**/*.test.tsx',
'test/**/*.html'
],
preprocessors: {
- 'test/main.js': [ 'webpack', 'sourcemap' ],
- 'test/**/*.test.js': [ 'webpack', 'sourcemap' ],
- 'test/**/*.test.jsx': [ 'webpack', 'sourcemap' ],
+ 'test/main.ts': [ 'webpack', 'sourcemap' ],
+ 'test/**/*.test.ts': [ 'webpack', 'sourcemap' ],
+ 'test/**/*.test.tsx': [ 'webpack', 'sourcemap' ],
'test/**/*.html': ['html2js']
},