-
-
Notifications
You must be signed in to change notification settings - Fork 379
/
karma.conf.js
107 lines (93 loc) · 2.61 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
101
102
103
104
105
106
107
const path = require('path');
const webpack = require('webpack');
const ESLintPlugin = require('eslint-webpack-plugin');
const testsRules = require('./Utilities/config/rules-tests');
const sourcePath = path.join(__dirname, './Sources');
if (!process.env.NODE_ENV) process.env.NODE_ENV = 'test';
module.exports = function init(config) {
config.set({
plugins: [
require('karma-webpack'),
require('karma-chrome-launcher'),
require('karma-firefox-launcher'),
require('karma-coverage'),
require('karma-junit-reporter'),
require('./Utilities/Karma/tape-object-stream'),
require('./Utilities/Karma/tape-html-reporter'),
],
basePath: '',
frameworks: ['tape-object-stream', 'webpack'],
files: [
'Sources/Testing/index.js',
{
pattern: 'Sources/**/*.js',
watched: true,
served: false,
included: false,
},
{ pattern: 'Data/**', watched: false, served: true, included: false },
],
preprocessors: {
'Sources/Testing/index.js': ['webpack'],
},
webpack: {
mode: 'development',
module: {
rules: [].concat(testsRules),
},
resolve: {
modules: [path.resolve(__dirname, 'node_modules'), sourcePath],
alias: {
'vtk.js': __dirname,
stream: 'stream-browserify',
buffer: 'buffer',
},
fallback: {
path: false,
fs: false,
},
},
plugins: [
new ESLintPlugin(),
new webpack.DefinePlugin({
__BASE_PATH__: "'/base'",
}),
new webpack.ProvidePlugin({ process: ['process/browser'] }),
],
},
reporters: ['coverage', 'junit', 'tape-html'],
tapeHTMLReporter: {
templateFile: 'Utilities/Karma/reporting-template.html',
outputFile: 'Utilities/TestResults/Test-Report.html',
},
coverageReporter: {
dir: 'Documentation/build-tmp/public',
reporters: [{ type: 'html', subdir: 'coverage' }],
},
junitReporter: {
outputDir: 'Utilities/TestResults',
},
client: {
useIframe: true,
},
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: ['--no-sandbox', '--ignore-gpu-blacklist'],
},
ChromeWebGPU: {
base: 'ChromeCanary',
flags: ['--enable-unsafe-webgpu'],
},
},
// browserNoActivityTimeout: 600000,
browserDisconnectTimeout: 100000,
browserDisconnectTolerance: 3,
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: true,
});
};