forked from Seedstars/django-react-redux-base
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
59 lines (55 loc) · 1.32 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
var webpackConfig = require('./webpack.config').default;
var isDevelopment = process.env.NODE_ENV === 'development';
var isCI = process.env.TRAVIS;
var singleRun = !isDevelopment;
var autoWatch = isDevelopment;
var browsers = (isDevelopment && ['Chrome']) ||
(isCI && ['Chrome_travis_ci', 'Firefox']) ||
['Chrome', 'Firefox'];
module.exports = function (config) {
config.set({
browsers: browsers,
autoWatch: autoWatch,
singleRun: singleRun,
frameworks: ['mocha'],
files: [
'./tests/js/index.js'
],
preprocessors: {
'./tests/js/index.js': ['webpack', 'sourcemap']
},
reporters: ['dots', 'coverage'],
coverageReporter: {
check: {
global: {
statements: 100,
branches: 100,
functions: 100,
lines: 100
}
},
dir: 'coverage/',
subdir: function(browserName) {
if (isCI) {
return 'ci';
}
return browserName;
},
reporters: [
{type: 'html'},
{type: 'lcovonly', file: 'lcov.info'},
{type: 'text'}
]
},
webpack: webpackConfig,
customLaunchers: {
Chrome_travis_ci: {
base: 'Chrome',
flags: ['--no-sandbox']
}
},
webpackServer: {
noInfo: true
}
});
};