-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
43 lines (42 loc) · 945 Bytes
/
karma.conf.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
const webpackConfig = require('./webpack.config');
module.exports = (config) => {
config.set({
frameworks: ['source-map-support', 'mocha', 'chai'],
files: [
'test/index.ts'
],
reporters: ['spec', 'coverage-istanbul'],
preprocessors: {
'test/index.ts': ['webpack']
},
colors: true,
browsers: ['Chrome'],
autoWatch: false,
concurrency: Infinity,
webpack: webpackConfig,
webpackMiddleware: {
stats: 'errors-only'
},
mime: {
'text/x-typescript': ['ts']
},
coverageIstanbulReporter: {
reports: [
'html',
'text',
'text-summary'
],
dir: './coverage',
fixWebpackSourcePaths: true
},
plugins: [
'karma-chrome-launcher',
'karma-coverage-istanbul-reporter',
'karma-mocha',
'karma-chai',
'karma-source-map-support',
'karma-spec-reporter',
'karma-webpack'
]
});
}