-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
47 lines (41 loc) · 1.1 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
// Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html
const PORT = 9876
module.exports = (config) => {
config.set({
basePath: '.',
frameworks: ['mocha'],
plugins: [
require('karma-chrome-launcher'),
require('karma-coverage-istanbul-reporter'),
require('karma-mocha'),
require('karma-mocha-reporter'),
require('karma-webpack'),
],
files: [
{ pattern: 'test/karma-bundle.ts', watched: false }
],
preprocessors: {
'**/*': ['webpack'],
},
webpack: require('./webpack.config'),
client: {
clearContext: false,
},
coverageIstanbulReporter: {
reports: ['html', 'lcovonly'],
fixWebpackSourcePaths: true,
},
reporters: ['mocha'],
port: PORT,
colors: true,
logLevel: 'info',
autoWatch: true,
browsers: ['ChromeHeadless'],
// prevents Chrome error - Refused to execute script from [test url] because
// its MIME type ('video/mp2t') is not executable.
mime: {
'text/x-typescript': ['ts'],
},
})
}