forked from microsoft/roosterjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
63 lines (58 loc) · 1.78 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
const argv = require('minimist')(process.argv.slice(2));
const components = argv.components !== true && argv.components;
module.exports = function (config) {
config.set({
basePath: '.',
plugins: [
'karma-webpack',
'karma-firefox-launcher',
'karma-phantomjs-launcher',
'karma-jasmine',
'karma-sourcemap-loader',
],
client: {
components: components,
clearContext: false,
},
browsers: ['Firefox'],
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: [
{
test: /\.ts$/,
loader: 'ts-loader',
options: {
compilerOptions: {
rootDir: __dirname,
},
},
},
],
},
resolve: {
extensions: ['.ts', '.js'],
modules: ['./packages'],
},
},
// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity,
});
};