-
Notifications
You must be signed in to change notification settings - Fork 34
/
karma.conf.cjs
121 lines (110 loc) · 3.16 KB
/
karma.conf.cjs
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
const istanbul = require('rollup-plugin-istanbul');
const resolve = require('@rollup/plugin-node-resolve').nodeResolve;
const json = require('@rollup/plugin-json');
const env = process.env.NODE_ENV;
module.exports = async function(karma) {
const builds = (await import('./rollup.config.js')).default;
const regex = karma.autoWatch ? /chartjs-chart-treemap\.cjs$/ : /chartjs-chart-treemap\.min\.js$/;
const build = builds.filter(v => v.output.file && v.output.file.match(regex))[0];
if (env === 'test') {
build.plugins = [
resolve(),
json(),
istanbul({exclude: ['node_modules/**/*.js', 'package.json']})
];
}
karma.set({
browsers: ['chrome', 'firefox'],
frameworks: ['jasmine'],
reporters: ['progress', 'summary', 'kjhtml'],
logLevel: karma.autoWatch ? karma.LOG_INFO : karma.LOG_WARN,
summaryReporter: {
show: 'failed',
specLength: 50,
overviewColumn: false
},
client: {
clearContext: false,
jasmine: {
stopOnSpecFailure: false,
timeoutInterval: 1000
}
},
// Explicitly disable hardware acceleration to make image
// diff more stable when ran on Travis and dev machine.
// https://github.com/chartjs/Chart.js/pull/5629
// Since FF 110 https://github.com/chartjs/Chart.js/issues/11164
customLaunchers: {
chrome: {
base: 'Chrome',
flags: [
'--disable-accelerated-2d-canvas',
'--disable-background-timer-throttling',
'--disable-backgrounding-occluded-windows',
'--disable-renderer-backgrounding'
]
},
firefox: {
base: 'Firefox',
prefs: {
'layers.acceleration.disabled': true,
'gfx.canvas.accelerated': false
}
}
},
files: [
{pattern: './test/fixtures/**/*.js', included: false},
{pattern: './test/fixtures/**/*.png', included: false},
'node_modules/chart.js/dist/chart.umd.js',
{pattern: 'test/index.js', watched: false},
{pattern: 'src/index.js', watched: false},
{pattern: 'test/specs/**/*.js', watched: false}
],
preprocessors: {
'test/fixtures/**/*.js': ['fixtures'],
'test/specs/**/*.js': ['rollup'],
'test/index.js': ['rollup'],
'src/index.js': ['sources']
},
rollupPreprocessor: {
plugins: [
resolve(),
json(),
],
output: {
name: 'test',
format: 'umd',
sourcemap: karma.autoWatch ? 'inline' : false
},
},
customPreprocessors: {
fixtures: {
base: 'rollup',
options: {
output: {
format: 'iife',
name: 'fixture',
globals: {
'chart.js': 'Chart',
'chart.js/helpers': 'Chart.helpers'
},
}
}
},
sources: {
base: 'rollup',
options: build
}
},
});
if (env === 'test') {
karma.reporters.push('coverage');
karma.coverageReporter = {
dir: 'coverage/',
reporters: [
{type: 'html', subdir: 'html'},
{type: 'lcovonly', subdir: (browser) => browser.toLowerCase().split(/[ /-]/)[0]}
]
};
}
};