-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathkarma.conf.js
80 lines (69 loc) · 2.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
const {default: webpackTestConfig} = require('./webpack-test.config')
// './test/*\.spec\.ts'
module.exports = (config) => {
config.set({
// Base path that will be used to resolve all patterns (eg. files, exclude).
basePath: './',
// Frameworks to use.
// Available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['mocha', 'power-assert'],
// List of files to load in the browser.
files: [
'./test/test.ts'
],
plugins: [
require('karma-mocha'),
require('karma-power-assert'),
require('karma-sourcemap-loader'),
require('karma-chrome-launcher'),
require('karma-espower-preprocessor'),
require('karma-spec-reporter'),
require('karma-webpack')
],
webpack: webpackTestConfig,
// Preprocess matching files before serving them to the browser.
// Available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
preprocessors: {
'test/test.ts': ['webpack', 'sourcemap', 'espower'],
'./test/*\.spec\.ts': ['webpack', 'sourcemap', 'espower']
},
mime: {
'text/x-typescript': [ 'ts' ]
},
coverageIstanbulReporter: {
reports: ['text-summary', 'html', 'lcovonly'],
fixWebpackSourcePaths: true
},
// Test results reporter to use.
// Possible values: 'dots', 'progress'.
// Available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['spec'],
// Level of logging
// Possible values:
// - config.LOG_DISABLE
// - config.LOG_ERROR
// - config.LOG_WARN
// - config.LOG_INFO
// - config.LOG_DEBUG
logLevel: config.LOG_WARN,
// Start these browsers.
// Available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['ChromeHeadlessNoSandbox'],
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: [
'--no-sandbox', // required to run without privileges in docker
'--user-data-dir=/tmp/chrome-test-profile',
'--disable-web-security'
]
}
},
browserConsoleLogOptions: {
terminal: true,
level: 'log'
},
singleRun: true,
colors: true
})
}