forked from ngrx/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
76 lines (64 loc) · 1.43 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
var path = require('path');
module.exports = function(karma) {
'use strict';
karma.set({
basePath: __dirname,
frameworks: ['jasmine'],
files: [
{ pattern: 'tests.js', watched: false }
],
exclude: [],
preprocessors: {
'tests.js': ['coverage', 'webpack', 'sourcemap']
},
reporters: ['mocha', 'coverage'],
coverageReporter: {
dir: 'coverage/',
subdir: '.',
reporters: [
{ type: 'text-summary' },
{ type: 'json' },
{ type: 'html' }
]
},
browsers: ['Chrome'],
port: 9018,
runnerPort: 9101,
colors: true,
logLevel: karma.LOG_INFO,
autoWatch: true,
singleRun: false,
webpack: {
devtool: 'inline-source-map',
resolve: {
root: __dirname,
extensions: ['', '.ts', '.js']
},
module: {
loaders: [
{
test: /\.ts?$/,
exclude: /(node_modules)/,
loader: 'ts-loader?target=es5&module=commonjs'
}
],
postLoaders: [
{
test: /\.(js|ts)$/, loader: 'istanbul-instrumenter-loader',
include: path.resolve(__dirname, 'lib'),
exclude: [
/\.(e2e|spec)\.ts$/,
/node_modules/
]
}
]
},
ts: {
configFileName: './spec/tsconfig.json'
}
},
webpackServer: {
noInfo: true
}
});
};