forked from chartjs/chartjs-plugin-datalabels
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
107 lines (98 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 commonjs = require('rollup-plugin-commonjs');
const istanbul = require('rollup-plugin-istanbul');
const resolve = require('rollup-plugin-node-resolve');
const builds = require('./rollup.config');
const yargs = require('yargs');
module.exports = function(karma) {
const args = yargs.argv;
const regex = args.autoWatch ? /s\.js$/ : /s\.min\.js$/;
const pattern = !args.grep || args.grep === true ? '' : args.grep;
const specs = `test/specs/**/*${pattern}*spec.js`;
const output = builds[0].output.filter((v) => v.file.match(regex))[0];
const build = Object.assign({}, builds[0], {output: output});
if (args.autoWatch) {
build.output.sourcemap = 'inline';
}
karma.set({
browsers: ['firefox'],
frameworks: ['jasmine'],
reporters: ['spec', 'kjhtml'],
logLevel: karma.LOG_WARN,
files: [
{pattern: './test/fixtures/**/*.js', included: false},
{pattern: './test/fixtures/**/*.png', included: false},
'node_modules/chart.js/dist/chart.umd.js',
'test/index.js',
'src/plugin.js',
specs
],
// 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
customLaunchers: {
firefox: {
base: 'Firefox',
prefs: {
'layers.acceleration.disabled': true
}
}
},
preprocessors: {
'test/fixtures/**/*.js': ['fixtures'],
'test/specs/**/*.js': ['rollup'],
'test/index.js': ['rollup'],
'src/plugin.js': ['sources']
},
rollupPreprocessor: {
plugins: [
resolve(),
commonjs()
],
external: [
'chart.js',
'chartjs-plugin-datalabels',
],
output: {
format: 'umd',
globals: {
'chart.js': 'Chart',
'chartjs-plugin-datalabels': 'ChartDataLabels',
}
}
},
customPreprocessors: {
fixtures: {
base: 'rollup',
options: {
output: {
format: 'iife',
name: 'fixture'
}
}
},
sources: {
base: 'rollup',
options: build
}
}
});
if (args.coverage) {
karma.reporters.push('coverage');
karma.coverageReporter = {
dir: 'coverage/',
reporters: [
{type: 'html', subdir: 'html'},
{type: 'lcovonly', subdir: '.'}
]
};
[
karma.rollupPreprocessor,
karma.customPreprocessors.sources.options
].forEach((v) => {
(v.plugins || (v.plugins = [])).push(
istanbul({
include: 'src/**/*.js'
}));
});
}
};