-
Notifications
You must be signed in to change notification settings - Fork 25
/
karma.conf.js
82 lines (72 loc) · 1.6 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
var path = require('path');
module.exports = function(karma) {
'use strict';
karma.set({
basePath: __dirname,
frameworks: ['jasmine'],
files: [
{ pattern: 'tests.bundle.ts', watched: false }
],
exclude: [],
preprocessors: {
'tests.bundle.ts': ['coverage', 'webpack', 'sourcemap']
},
reporters: ['mocha', 'coverage'],
coverageReporter: {
dir: 'coverage/',
reporters: [
{ type: 'text-summary' },
{ type: 'json' },
{ type: 'html' }
]
},
browsers: ['Chrome'],
port: 9018,
runnerPort: 9101,
colors: true,
logLevel: karma.LOG_INFO,
autoWatch: true,
singleRun: false,
webpackServer: { noInfo: true },
webpack: {
devtool: 'inline-source-map',
resolve: {
root: __dirname,
extensions: ['', '.ts', '.js']
},
module: {
preLoaders: [
{
test: /\.ts$/,
loader: 'tslint-loader',
exclude: [
/node_modules/
]
}
],
loaders: [
{
test: /\.ts?$/,
exclude: /(node_modules)/,
loader: 'ts'
}
],
postLoaders: [
{
test: /\.(js|ts)$/, loader: 'istanbul-instrumenter',
include: path.resolve(__dirname, 'src'),
exclude: [
/\.(e2e|spec|bundle)\.ts$/,
/node_modules/
]
}
]
},
tslint: {
emitErrors: false,
failOnHint: false,
resourcePath: 'src'
}
}
});
};