-
Notifications
You must be signed in to change notification settings - Fork 37
/
karma.conf.js
47 lines (46 loc) · 935 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
44
45
46
47
var webpackCfg = require('./webpack.test.config');
module.exports = function (config) {
config.set({
basePath: '',
browsers: ['jsdom'],
files: [
'test/index.js'
],
port: 8080,
captureTimeout: 60000,
browserNoActivityTimeout: 60000,
frameworks: ['mocha', 'chai'],
client: {
mocha: {}
},
singleRun: true,
reporters: ['progress', 'coverage'],
mochaReporter: {
showDiff: true,
divider: '*'
},
preprocessors: {
'test/index.js': ['webpack']
},
webpack: webpackCfg,
webpackServer: {
noInfo: true
},
coverageReporter: {
dir: 'coverage/',
reporters: [
{type: 'html'},
{type: 'text'},
{type: 'text-summary'}
],
check: {
global: {
statements: 92.0,
branches: 89.0,
functions: 91.0,
lines: 85.0,
},
},
},
});
};