forked from stellar/js-soroban-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
38 lines (31 loc) · 861 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
38
const webpackConfig = require('./webpack.config.browser.js');
delete webpackConfig.output;
delete webpackConfig.entry; // karma fills these in
webpackConfig.plugins.shift(); // drop eslinter plugin
module.exports = function (config) {
config.set({
frameworks: ['mocha', 'sinon-chai'],
browsers: ['FirefoxHeadless', 'ChromeHeadless'],
files: [
'./dist/soroban-client.js', // webpack should build this first
'./test/test-browser.js',
'./test/unit/**/*.js'
],
preprocessors: {
'./test/**/*.js': ['webpack']
},
webpack: webpackConfig,
webpackMiddleware: {
noInfo: true
},
colors: true,
singleRun: true,
reporters: ['dots', 'coverage'],
coverageReporter: {
type: 'text-summary',
instrumenterOptions: {
istanbul: { noCompact: true }
}
}
});
};