forked from rangle/angular2-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
108 lines (95 loc) · 2.36 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
'use strict';
process.env.TEST = true;
const loaders = require('./webpack/loaders');
const plugins = require('./webpack/plugins');
module.exports = (config) => {
const coverage = config.singleRun ? ['coverage'] : [];
config.set({
mime: { 'text/x-typescript': ['ts', 'tsx'] },
frameworks: [
'jasmine',
],
plugins: [
'karma-jasmine',
'karma-sourcemap-writer',
'karma-sourcemap-loader',
'karma-webpack',
'karma-coverage',
'karma-remap-coverage',
'karma-spec-reporter',
'karma-chrome-launcher',
],
files: [
'./src/tests.entry.ts',
{
pattern: '**/*.map',
served: true,
included: false,
watched: true,
},
],
preprocessors: {
'./src/tests.entry.ts': [
'webpack',
'sourcemap',
],
'./src/**/!(*.spec).(ts|js)': [
'sourcemap',
],
},
webpack: {
entry: './src/tests.entry.ts',
devtool: 'inline-source-map',
resolve: {
extensions: ['.webpack.js', '.web.js', '.ts', '.js'],
},
module: {
rules: [
{
test: /\.ts$/,
loader: 'awesome-typescript-loader?module=commonjs',
exclude: /node_modules/,
},
loaders.html,
{ test: /\.(css|svg|eot|woff|woff2|ttf)/, use: 'null-loader' },
].concat(config.singleRun ? [loaders.istanbulInstrumenter] : []),
},
stats: { colors: true, reasons: true },
plugins,
},
webpackServer: {
noInfo: true, // prevent console spamming when running in Karma!
},
reporters: ['spec']
.concat(coverage)
.concat(coverage.length > 0 ? ['remap-coverage'] : []),
// only output json report to be remapped by remap-istanbul
coverageReporter: {
type: 'in-memory',
check: {
global: {
statements: 50,
branches: 50,
functions: 50,
lines: 50,
},
each: {
statements: 50,
branches: 50,
functions: 50,
lines: 50,
},
},
},
remapCoverageReporter: {
html: './coverage',
json: './coverage/coverage.json',
},
port: 9999,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'], // Alternatively: 'PhantomJS'
captureTimeout: 6000,
});
};