-
Notifications
You must be signed in to change notification settings - Fork 15
/
karma.conf.js
51 lines (51 loc) · 1.71 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
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,
module: 'commonjs',
sourceMap: true,
target: 'ES6',
baseUrl: '.'
},
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: true,
singleRun: false,
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
logLevel: config.DEBUG,
browserDisconnectTolerance: 2,
browserNoActivityTimeout: 5000000
});
};