forked from cornerstonejs/cornerstone3D
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
147 lines (145 loc) · 4.34 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
const path = require('path');
process.env.CHROME_BIN = require('puppeteer').executablePath();
module.exports = function (config) {
config.set({
reporters: ['junit', 'coverage', 'spec'],
client: {
jasmine: {
// random: false, // don't randomize the order of tests
stopOnFailure: false,
failFast: false,
},
captureConsole: false,
clearContext: false,
},
specReporter: {
maxLogLines: 5, // limit number of lines logged per test
suppressSummary: true, // do not print summary
suppressErrorSummary: true, // do not print error summary
suppressFailed: false, // do not print information about failed tests
suppressPassed: false, // do not print information about passed tests
suppressSkipped: true, // do not print information about skipped tests
showSpecTiming: false, // print the time elapsed for each spec
failFast: false, // test would finish with error when a first fail occurs
prefixes: {
success: ' PASS: ', // override prefix for passed tests, default is '✓ '
failure: 'FAILED: ', // override prefix for failed tests, default is '✗ '
skipped: 'SKIPPED: ', // override prefix for skipped tests, default is '- '
},
},
junitReporter: {
outputDir: 'junit',
outputFile: 'test-results.xml',
},
plugins: [
'karma-webpack',
'karma-jasmine',
'karma-chrome-launcher',
// Reports / Output
'karma-junit-reporter',
'karma-coverage',
'karma-spec-reporter',
],
frameworks: ['jasmine', 'webpack'],
customHeaders: [
{
match: '.*.html',
name: 'Cross-Origin-Opener-Policy',
value: 'same-origin',
},
{
match: '.*.html',
name: 'Cross-Origin-Embedder-Policy',
value: 'require-corp',
},
],
files: [
'packages/streaming-image-volume-loader/test/**/*_test.js',
'packages/core/test/**/*_test.js',
'packages/tools/test/**/*_test.js',
],
preprocessors: {
'packages/streaming-image-volume-loader/test/**/*_test.js': ['webpack'],
'packages/core/test/**/*_test.js': ['webpack'],
'packages/tools/test/**/*_test.js': ['webpack'],
},
coverageIstanbulReporter: {
reports: ['html', 'text-summary', 'lcovonly'],
dir: path.join(__dirname, 'coverage'),
fixWebpackSourcePaths: true,
'report-config': {
html: { outdir: 'html' },
linkMapper: '/',
},
},
/*webpackMiddleware: {
noInfo: true
},*/
webpack: {
devtool: 'eval-source-map',
mode: 'development',
module: {
rules: [
{
test: /\.(js|jsx|ts|tsx)$/,
exclude: /node_modules/,
use: ['babel-loader'],
},
{
test: /\.png$/i,
use: [
{
loader: 'url-loader',
},
],
},
// NOTE: For better debugging you can comment out the
// istanbul-instrumenter-loader below
// {
// test: /\.ts$/,
// exclude: [path.resolve(__dirname, 'test')],
// enforce: 'post',
// use: {
// loader: 'istanbul-instrumenter-loader',
// options: { esModules: true },
// },
// },
],
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.jsx'],
fallback: {
fs: false,
path: require.resolve('path-browserify'),
},
alias: {
'@cornerstonejs/core': path.resolve('packages/core/src/index'),
'@cornerstonejs/tools': path.resolve('packages/tools/src/index'),
'@cornerstonejs/streaming-image-volume-loader': path.resolve(
'packages/streaming-image-volume-loader/src/index'
),
},
},
},
webpackMiddleware: {
noInfo: false,
},
customLaunchers: {
ChromeHeadlessNoSandbox: {
base: 'ChromeHeadless',
flags: [
'--disable-translate',
'--disable-extensions',
'--no-sandbox',
'--ignore-gpu-blacklist',
'--remote-debugging-port=9229',
],
},
},
browsers: ['ChromeHeadlessNoSandbox'],
// browsers: ['Chrome'],
// singleRun: true,
// colors: true,
// autoWatch: true,
});
};