-
Notifications
You must be signed in to change notification settings - Fork 20
/
karma.conf.js
86 lines (75 loc) · 2.1 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
74
75
76
77
78
79
80
81
82
83
84
85
86
module.exports = (config) => {
config.set({
// toggle whether to watch files and rerun tests upon incurring changes
autoWatch: false,
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: [
// 'Chrome',
'PhantomJS',
],
// web server port
port: 9876,
// enable colors in the output
colors: true,
// if true, Karma runs tests once and exits
singleRun: true,
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha', 'chai', 'sinon', 'sinon-chai'],
// list of files/patterns to load in the browser
files: [
'node_modules/babel-polyfill/browser.js',
'karma.spec.js',
],
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'karma.spec.js': ['webpack'],
},
webpack: {
devtool: 'inline-source-map',
module: {
loaders: [
{
// transpile all files except testing sources with babel as usual
test: /\.spec\.js$/,
loaders: ['babel'],
exclude: /node_modules/,
},
{
test: /\.css$/,
loader: 'null',
},
{
test: /\.html$/,
loader: 'raw',
},
],
postLoaders: [
{
// transpile and instrument only testing sources with isparta
test: /\.js$/,
exclude: [
/node_modules/,
/\.spec\.js$/,
],
loader: 'isparta',
}
]
}
},
webpackServer: {
noInfo: true // prevent console spamming when running in Karma!
},
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['mocha', 'coverage'],
// set coverage reporters
coverageReporter: {
reporters: [
{ type: 'text' },
{ type: 'html', subdir: 'html' },
]
},
});
};