-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
64 lines (63 loc) · 1.54 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
60
61
62
63
64
'use strict';
const webpackConfig = require('./webpack.config.js');
module.exports = function (config) {
config.set({
frameworks: ['mocha', 'chai'],
files: [
'test/coverage/**.js',
{
//assets
pattern: 'test/testAssets/*.*',
watched: false,
included: false,
served: true,
nocache: false,
},
],
//report type
reporters: ['progress', 'coverage'],
//transpile
preprocessors: {
'test/coverage/**.js': ['webpack', 'coverage'],
},
coverageReporter: {
instrumenters:{
},
reporters: [
{
type: 'lcovonly',
dir: 'coverage',
subdir: '.',
},
// { type: 'html', subdir: 'report-html', dir: 'coverage' },
// {
// type: 'cobertura',
// dir: 'coverage',
// subdir: '.',
// file: 'cobertura.txt',
// },
// {
// type: 'teamcity',
// dir: 'coverage',
// subdir: '.',
// file: 'teamcity.txt',
// },
{ type: 'json', dir: 'coverage', subdir: '.' },
],
},
port: 9876, // karma web server port
colors: true,
logLevel: config.LOG_INFO,
browsers: ['ChromeHeadlessNoSandbox'],
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
}
},
autoWatch: false,
// singleRun: false, // Karma captures browsers, runs the tests and exits
concurrency: Infinity,
webpack: webpackConfig.test,
});
};