-
Notifications
You must be signed in to change notification settings - Fork 2
/
karma.conf.js
58 lines (44 loc) · 1.22 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
"use strict";
module.exports = function(config) {
config.set({
basePath: "",
frameworks: ["jasmine", "karma-typescript"],
client: {
jasmine: {
random: true
}
},
files: [
{pattern: "src/**/*.ts"},
],
reporters: ["progress", "karma-typescript"],
coverageReporter: {
type: "in-memory"
},
preprocessors: {
"src/**/*.ts": ["karma-typescript"],
},
karmaTypescriptConfig: {
coverageOptions: {
//Enabled coverage when running in non-server mode
instrumentation: config.singleRun
},
exclude: {
mode: "merge",
values: ["type-specs"]
},
tsconfig: "./tsconfig-test.json",
compilerOptions: {
module: "commonjs",
target: "es5"
}
},
port: 9876,
colors: true,
logLevel: "INFO",
reportSlowerThan: 100,
browsers: config.browsers.length ? config.browsers : ["Chrome"],
captureTimeout: 60000,
browserNoActivityTimeout: 60000
});
};