-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
45 lines (45 loc) · 1.56 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
module.exports = (config) => {
config.set({
frameworks: [
'jasmine'
],
plugins: [
require('karma-jasmine'),
require('karma-chrome-launcher'),
require('karma-jasmine-html-reporter'),
require('karma-spec-reporter'),
require('karma-webpack')
],
client: {
clearContext: false // leave Jasmine Spec Runner output visible in browser
},
files: [{
pattern: 'src/**/*.spec.ts'
}],
mime: {
'text/x-typescript': ['ts', 'tsx']
},
preprocessors: {
'src/**/*.spec.ts': ['webpack']
},
webpack: require('./webpack.config'),
reporters: ['spec', 'kjhtml'],
specReporter: {
maxLogLines: 5, // limit number of lines logged per test
suppressErrorSummary: true, // do not print error summary
suppressFailed: false, // do not print information about failed tests
suppressPassed: false, // do not print information about passed tests
suppressSkipped: true, // do not print information about skipped tests
showSpecTiming: false // print the time elapsed for each spec
},
browsers: ['Chrome'],
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox']
}
},
logLevel: config.LOG_INFO,
singleRun: false
});
};