forked from microsoft/roosterjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
100 lines (88 loc) · 2.63 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const argv = require('minimist')(process.argv.slice(2));
const components = argv.components !== true && argv.components;
const runCoverage = typeof argv.coverage !== 'undefined';
const runFirefox = typeof argv.firefox !== 'undefined';
const runChrome = typeof argv.chrome !== 'undefined';
module.exports = function (config) {
const plugins = [
'karma-webpack',
'karma-phantomjs-launcher',
'karma-jasmine',
'karma-sourcemap-loader',
];
const launcher = [];
if (runCoverage) {
plugins.push('karma-coverage-istanbul-reporter');
}
if (runChrome) {
plugins.push('karma-chrome-launcher');
launcher.push('Chrome');
}
if (runFirefox) {
plugins.push('karma-firefox-launcher');
launcher.push('Firefox');
}
const rules = runCoverage
? [
{
test: /lib(\\|\/).*\.ts$/,
loader: ['@jsdevtools/coverage-istanbul-loader', 'ts-loader'],
},
{
test: /test(\\|\/).*\.ts$/,
loader: 'ts-loader',
},
]
: [
{
test: /\.ts$/,
loader: 'ts-loader',
},
];
const settings = {
basePath: '.',
plugins,
client: {
components: components,
clearContext: false,
},
browsers: launcher,
files: ['karma.tests.js'],
frameworks: ['jasmine'],
preprocessors: {
'karma.tests.js': ['webpack', 'sourcemap'],
},
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
// to avoid DISCONNECTED messages
browserDisconnectTimeout: 10000, // default 2000
browserDisconnectTolerance: 1, // default 0
browserNoActivityTimeout: 60000, //default 10000
singleRun: true,
captureTimeout: 60000,
webpack: {
devtool: 'inline-source-map',
mode: 'development',
module: {
rules,
},
resolve: {
extensions: ['.ts', '.js'],
modules: ['./packages', './node_modules'],
},
},
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity,
};
if (runCoverage) {
settings.reporters = ['coverage-istanbul'];
settings.coverageIstanbulReporter = {
reports: ['html', 'lcovonly', 'text-summary'],
dir: './dist/deploy/coverage',
};
}
config.set(settings);
};