-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
47 lines (36 loc) · 1.01 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
var path = require('path');
// Karma configuration
module.exports = function(config) {
config.set({
basePath: '.',
frameworks: ['jasmine'],
files: ['src/**/*.test.js'],
browsers: ['PhantomJS'],
reporters: ['spec', 'coverage-istanbul'],
preprocessors: {
'src/**/*.test.js': ['webpack']
},
coverageIstanbulReporter: {
reports: ['text-summary', 'lcov'],
fixWebpackSourcePaths: true,
type: 'lcov',
dir: 'test/report/'
},
webpack: {
module: {
rules: [
{
test: /\.js$/,
include: path.resolve('src/'),
exclude: /\.test\.js$/,
loader: 'istanbul-instrumenter-loader'
}
]
}
},
webpackMiddleware: {
stats: 'errors-only'
},
singleRun: true
});
};