forked from dashpay/dashcore-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
59 lines (55 loc) · 1.24 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
/* eslint-disable */
// TODO: Remove previous line and work through linting issues at next edit
'use strict';
var src = './index.js',
tests = './test.spec.js';
var karmaConfig = {
frameworks: ['mocha', 'chai'],
files: [
src,
tests,
{ pattern: 'node_modules/bls-signatures/blsjs.wasm', included: false }
],
preprocessors: {},
webpack: {
node: {
fs: 'empty',
},
module: {
rules: [
{ test: /\.dat$/, use: "raw-loader" },
{ enforce:'post', loader: "transform-loader?brfs" },
],
},
},
reporters: ['mocha'],
port: 9876,
colors: true,
autoWatch: false,
browsers: ['ChromeHeadless', 'FirefoxHeadless'],
singleRun: false,
concurrency: Infinity,
plugins: [
'karma-mocha',
'karma-mocha-reporter',
'karma-chai',
'karma-chrome-launcher',
'karma-firefox-launcher',
'karma-webpack'
],
customLaunchers: {
FirefoxHeadless: {
base: 'Firefox',
flags: ['-headless'],
},
},
proxies: {
'/base/blsjs.wasm': `/base/node_modules/bls-signatures/blsjs.wasm`,
}
};
karmaConfig.preprocessors[src] = ['webpack'];
karmaConfig.preprocessors[tests] = ['webpack'];
// karma.conf.js
module.exports = function(config) {
config.set(karmaConfig);
};