-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkarma.conf.js
More file actions
48 lines (48 loc) · 994 Bytes
/
karma.conf.js
File metadata and controls
48 lines (48 loc) · 994 Bytes
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
module.exports = function(config) {
config.set({
browsers: ['ChromeHeadless'],
frameworks: ['jasmine'],
files: [
{ pattern: 'src/__tests.ts' },
],
mime: {
'text/x-typescript': ['ts'],
},
plugins: [
'karma-webpack',
'karma-jasmine',
'karma-chrome-launcher',
'karma-coverage',
],
preprocessors: {
'src/**/*.ts': ['webpack', 'coverage'], // Added 'coverage'
},
webpack: {
mode: 'development',
resolve: {
extensions: ['.ts', '.js'],
},
module: {
rules: [
{
test: /\.ts$/,
loader: 'ts-loader',
},
],
},
},
reporters: ['dots', 'coverage'],
coverageReporter: {
dir: 'coverage/',
reports: ['text-summary', 'html', 'lcovonly'],
check: {
global: {
statements: 80,
branches: 80,
functions: 80,
lines: 80,
},
},
},
});
};