-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathkarma.conf.js
More file actions
30 lines (30 loc) · 852 Bytes
/
karma.conf.js
File metadata and controls
30 lines (30 loc) · 852 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
module.exports = function (config) {
config.set({
files: ['tests/**/*.ts', 'src/**/*.ts'],
preprocessors: {
'**/*.ts': ['karma-typescript', 'coverage'],
},
karmaTypescriptConfig: {
compilerOptions: {
module: 'commonjs',
sourceMap: true,
target: 'es6',
},
exclude: ['node_modules'],
},
coverageReporter: {
dir: 'coverage/',
type: 'lcovonly',
subdir: '.',
},
reporters: ['progress', 'coverage'],
frameworks: ['mocha', 'karma-typescript'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
browsers: ['ChromeHeadless'],
autoWatch: true,
singleRun: true,
concurrency: Infinity,
});
};