-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
73 lines (71 loc) · 1.9 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
65
66
67
68
69
70
71
72
73
let path = require('path');
/* eslint-disable */
let isCI = process.env.CONTINUOUS_INTEGRATION ? true : false;
module.exports = config => {
config.set({
frameworks: ['mocha', 'chai'],
basePath: '',
files: [
'test/*.html',
'test.js'
],
browsers: [isCI ? 'ChromeTravisCI' : 'Chrome'],
customLaunchers: {
ChromeTravisCI: {
base: 'Chrome',
flags: ['--no-sandbox']
}
},
plugins: [
'karma-chrome-launcher',
'karma-mocha',
'karma-sourcemap-loader',
'karma-webpack',
'karma-mocha-reporter',
'karma-chai',
'karma-html2js-preprocessor'
],
reporters: ['progress', 'mocha'],
singleRun: true,
autoRun: true,
mochaReporter: {
colors: {
success: 'blue',
info: 'bgGreen',
warning: 'cyan',
error: 'bgRed'
},
symbols: {
success: '+',
info: '#',
warning: '!',
error: 'x'
}
},
preprocessors: {
'test.js': ['webpack', 'sourcemap'],
'test/*.html': ['html2js']
},
logLevel: config.LOG_INFO,
colors: true,
webpack: {
devtool: 'inline-source-map',
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
}
]
},
resolve: {
extensions: ['.js'],
modules: [path.join(__dirname, './node_modules')]
}
},
webpackMiddleware: {
noInfo: true
}
});
};