forked from Kitware/itk-vtk-viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkarma.conf.js
98 lines (83 loc) · 2.43 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
/* eslint-disable global-require */
/* eslint-disable react/require-extension */
var path = require('path')
const vtkRules = require('vtk.js/Utilities/config/rules-vtk.js');
var webpack = require('webpack')
var sourcePath = path.join(__dirname, './src');
if (!process.env.NODE_ENV) process.env.NODE_ENV = 'test';
module.exports = function init(config) {
config.set({
plugins: [
require('karma-webpack'),
require('karma-tap'),
require('karma-chrome-launcher'),
require('karma-firefox-launcher'),
require('karma-tap-pretty-reporter'),
require('karma-junit-reporter'),
],
basePath: '',
frameworks: ['tap'],
files: [
'./test/tests.js',
{ pattern: './dist/itk/ImageIOs/**', watched: true, served: true, included: false },
{ pattern: './dist/itk/MeshIOs/**', watched: true, served: true, included: false },
{ pattern: './dist/itk/WebWorkers/**', watched: true, served: true, included: false },
{ pattern: './dist/itk/Pipelines/**', watched: true, served: true, included: false },
{ pattern: './test/data/**', watched: false, served: true, included: false },
],
preprocessors: {
'./test/tests.js': ['webpack'],
},
webpack: {
mode: 'development',
node: {
fs: 'empty',
},
module: {
rules: [
{ test: /\.(png|jpg)$/, use: 'url-loader?limit=81920' },
].concat(vtkRules),
},
resolve: {
modules: [
path.resolve(__dirname, 'node_modules'),
sourcePath,
],
alias: {
'./itkConfig$': path.resolve(__dirname, 'test', 'itkConfigBrowserTest.js'),
},
},
plugins: [
new webpack.DefinePlugin({
__BASE_PATH__: "'/base'",
}),
],
},
webpackMiddleware: {
noInfo: true,
},
reporters: [
'tap-pretty',
'junit',
],
tapReporter: {
outputFile: 'test/output.html',
prettifier: 'tap-markdown',
separator: '\n=========================================================\n=========================================================\n',
},
junitReporter: {
outputDir: 'test',
},
client: {
useIframe: true,
},
// browserNoActivityTimeout: 600000,
// browserDisconnectTimeout: 600000,
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
singleRun: true,
});
};