Configure karma.conf

jh-changes
Shin'ya Ueoka 5 years ago
parent 194edb1f73
commit 2b8c37e57f
  1. 12
      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']
},