forked from sociomantic-tsunami/nessie-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
46 lines (39 loc) · 878 Bytes
/
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
var webpackCfg = require('./webpack.config');
module.exports = function(config) {
config.set({
basePath: '',
browsers: ['PhantomJS'], // You may use 'ChromeCanary', 'Chromium' or any other supported browser
files: [
'node_modules/babel-polyfill/dist/polyfill.js',
'loadtests.js'
],
port: 8080,
captureTimeout: 60000,
frameworks: [ 'mocha', 'sinon-chai' ],
client: {
mocha: {},
chai: {
includeStack: true
}
},
singleRun: true,
preprocessors: {
'loadtests.js': [ 'webpack', 'sourcemap' ]
},
webpack: webpackCfg,
webpackServer: {
noInfo: true,
stats: {
// options i.e.
chunks: false
}
},
coverageReporter: {
dir: 'coverage/',
reporters: [
{ type: 'html' },
{ type: 'text' }
]
}
});
};