-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathkarma.conf.js
81 lines (78 loc) · 2.03 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
81
const path = require('path');
const webpack = require('webpack');
module.exports =
/**
* @param {import('karma').Config} config
*/
(config) => {
const browsers = config.browsers;
/** @type {import('karma').ConfigOptions} */
const options = {
basePath: '',
frameworks: ["jasmine"],
files: ["test/setup.ts"],
preprocessors: {
"test/setup.ts": ["webpack", "sourcemap"]
},
webpack: {
mode: "development",
resolve: {
extensions: [".ts", ".js"],
modules: [path.resolve(__dirname, 'node_modules')],
alias: {
src: path.resolve(__dirname, 'src'),
'aurelia-typed-observable-plugin': path.resolve(__dirname, 'src/index.ts'),
test: path.resolve(__dirname, 'test')
}
},
devtool: "inline-source-map",
module: {
rules: [
{
test: /\.ts$/,
loader: "ts-loader",
exclude: /node_modules/
}
]
},
plugins: [
new webpack.SourceMapDevToolPlugin({
test: /\.(ts|js|css)($|\?)/i
})
]
},
mime: {
"text/x-typescript": ["ts"]
},
reporters: ["mocha", "progress"],
webpackServer: { noInfo: config.noInfo },
browsers: Array.isArray(browsers) && browsers.length > 0 ? browsers : ['ChromeHeadless'],
logLevel: config.LOG_INFO,
customLaunchers: {
ChromeDebugging: {
base: "Chrome",
flags: ["--remote-debugging-port=9333"],
debug: true
}
},
mochaReporter: {
ignoreSkipped: true
},
singleRun: false
};
if (config.coverage) {
options.webpack.module.rules.push({
enforce: "post",
exclude: /(node_modules|\.spec\.ts$)/,
loader: "istanbul-instrumenter-loader",
options: { esModules: true },
test: /src[\/\\].+\.ts$/
});
options.reporters.push("coverage-istanbul");
options.coverageIstanbulReporter = {
reports: ["html", "lcovonly", "text-summary"],
fixWebpackSourcePaths: true
};
}
config.set(options);
};