-
Notifications
You must be signed in to change notification settings - Fork 3
/
karma-ci.conf.js
59 lines (58 loc) · 1.87 KB
/
karma-ci.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
const path = require('path');
module.exports = function (config) {
config.set({
frameworks: ["jasmine", "karma-typescript"],
plugins: [
require("karma-jasmine"),
require("karma-typescript"),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
],
files: [
{ pattern: "lib/**/*.ts" },
{ pattern: "test/browser/**/*.ts" }
],
exclude: [
],
preprocessors: {
"lib/**/*.ts": ["karma-typescript"],
"test/browser/**/*.ts": ["karma-typescript"]
},
reporters: ["kjhtml", "progress", "karma-typescript"],
browsers: ["Chrome"],
karmaTypescriptConfig: {
compilerOptions: {
emitDecoratorMetadata: true,
experimentalDecorators: true,
resolveJsonModule: true,
jsx: "react",
module: "commonjs",
sourceMap: true,
target: "ES5"
},
exclude: ["node_modules"],
bundlerOptions: {
transforms: [
require("karma-typescript-es6-transform")()
]
}
},
coverageReporter: {
reporters: [
{ type: 'html', subdir: 'html' },
{ type: 'lcov', subdir: 'lcov' },
{ type: 'lcovonly', subdir: '.', file: 'report-lcovonly.txt' }
]
},
port: 9669,
colors: true,
autoWatch: false,
singleRun: true,
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
logLevel: config.DEBUG,
browserDisconnectTolerance: 2,
browserNoActivityTimeout: 30000
});
};