forked from fengyuanchen/jquery-cropper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
37 lines (35 loc) · 887 Bytes
/
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
const puppeteer = require('puppeteer');
const rollupConfig = require('./rollup.config');
process.env.CHROME_BIN = puppeteer.executablePath();
process.env.NODE_ENV = 'test';
module.exports = (config) => {
config.set({
autoWatch: false,
browsers: ['ChromeHeadless'],
coverageIstanbulReporter: {
reports: ['html', 'lcovonly', 'text-summary'],
},
files: [
'node_modules/cropperjs/dist/cropper.css',
'test/index.js',
{
pattern: 'docs/images/*',
included: false,
},
],
frameworks: ['mocha', 'chai'],
preprocessors: {
'test/index.js': ['rollup'],
},
reporters: ['mocha', 'coverage-istanbul'],
rollupPreprocessor: {
plugins: rollupConfig.plugins,
output: {
format: 'iife',
name: 'Anonymous',
sourcemap: 'inline',
},
},
singleRun: true,
});
};