-
Notifications
You must be signed in to change notification settings - Fork 28
/
karma.conf.js
125 lines (113 loc) · 2.72 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
const path = require('path');
const webpack = require('webpack');
const ngtools = require('@ngtools/webpack');
const reporters = ['progress', 'jasmine-diff', 'mocha'];
if (process.env['CI']) {
reporters.push('karma-remap-istanbul');
}
module.exports = function(karma) {
'use strict';
karma.set({
basePath: __dirname,
frameworks: ['jasmine'],
files: [{
pattern: './tests.bundle.ts',
watched: false
}],
exclude: [],
preprocessors: {
'./tests.bundle.ts': ['webpack', 'sourcemap']
},
mime: {
'text/x-typescript': ['ts', 'tsx']
},
reporters: reporters,
remapIstanbulReporter: {
reports: {
html: 'coverage',
lcovonly: './coverage/coverage.lcov'
}
},
browsers: ['Chrome'],
port: 9018,
runnerPort: 9101,
colors: true,
logLevel: karma.LOG_INFO,
autoWatch: true,
singleRun: true,
webpack: {
devtool: 'inline-source-map',
resolve: {
plugins: [
new ngtools.PathsPlugin({
tsConfigPath: './tsconfig.json'
})
],
extensions: ['.ts', '.js']
},
entry: {
'tests.bundle.ts': './tests.bundle.ts'
},
output: {
path: './dist.test',
filename: '[name].bundle.js'
},
module: {
rules: [{
test: /\.js$/,
enforce: 'pre',
loader: 'source-map-loader',
exclude: [
/node_modules/
]
}, {
test: /\.ts$/,
loaders: [{
loader: '@ngtools/webpack',
query: {
tsConfigPath: './tsconfig.json',
module: 'commonjs'
}
}],
exclude: [/\.e2e\.ts$/]
}, {
test: /\.(js|ts)$/,
loader: 'sourcemap-istanbul-instrumenter-loader',
enforce: 'post',
exclude: [
/\.(e2e|spec)\.ts$/,
/node_modules/
],
query: {
'force-sourcemap': true
}
}]
},
plugins: [
new webpack.SourceMapDevToolPlugin({
filename: null,
test: /\.(ts|js)($|\?)/i
}),
new webpack.ContextReplacementPlugin(
/angular(\\|\/)core(\\|\/)(esm(\\|\/)src|src)(\\|\/)linker/,
'./src/'
)
]
},
webpackServer: {
noInfo: true
},
webpackMiddleware: {
noInfo: true, // Hide webpack output because its noisy.
stats: { // Also prevent chunk and module display output, cleaner look. Only emit errors.
assets: false,
colors: true,
version: false,
hash: false,
timings: false,
chunks: false,
chunkModules: false
},
},
});
};