Commit 135b4f75 authored by Clement Ho's avatar Clement Ho

Merge branch 'fix-karma-coverage' into 'master'

Fix javascript coverage reports

See merge request !9044
parents 58eae096 fbdf54bd
......@@ -13,9 +13,17 @@ module.exports = function(config) {
{ pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.html.raw)', included: false },
],
preprocessors: {
'spec/javascripts/**/*.js?(.es6)': ['webpack', 'sourcemap'],
'spec/javascripts/**/*.js?(.es6)': ['webpack', 'sourcemap', 'coverage'],
},
reporters: ['progress', 'coverage'],
webpack: webpackConfig,
webpackMiddleware: { stats: 'errors-only' },
coverageReporter: {
dir: './coverage-javascript',
reporters: [
{ type: 'html', subdir: 'default' },
{ type: 'text-summary' }
],
}
});
};
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment