-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.config.js
60 lines (41 loc) · 1.25 KB
/
karma.config.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
60
var webpackConfig = require('./webpack.config');
var preprocessors = {};
preprocessors["src/**/*.js"] = ['webpack', 'coverage'];
preprocessors["test/**/*.js"] = ['webpack'];
module.exports = function (config) {
config.set({
basePath: __dirname,
frameworks: ['chai', 'mocha'],
colors: true,
logLevel: config.LOG_INFO,
autoWatchBatchDelay: 300,
files: [
"./test/**/*.js"
// "./src/js/index.js"
],
exclude: [],
preprocessors: preprocessors,
webpack: webpackConfig,
webpackMiddleware: {noInfo: true},
//autoWatch: !ci,
browsers: ['Chrome'], //['Firefox'],
singleRun: true,
browserNoActivityTimeout: 180000,
reporters : ['progress', 'coverage'],
coverageReporter: {
reporters: [
{type: 'lcov', dir: 'coverage/', subdir: '.'},
{type: 'json', dir: 'coverage/', subdir: '.'},
{type: 'text-summary'}
]
},
plugins: [
'karma-webpack',
'karma-mocha',
'karma-chai',
'karma-coverage',
'karma-chrome-launcher',
'karma-firefox-launcher'
]
});
};