diff options
author | winniehell <git@winniehell.de> | 2017-02-10 19:29:03 +0100 |
---|---|---|
committer | winniehell <git@winniehell.de> | 2017-02-11 21:55:02 +0100 |
commit | b48d30e4d27d2482f5517fc58751953d32f0ded6 (patch) | |
tree | 84aabcc093717fc23a704bb15516512592b4ee30 /config/karma.config.js | |
parent | 8a1441fb025bf9f46d42017e069382a44ade28d0 (diff) | |
download | gitlab-ce-b48d30e4d27d2482f5517fc58751953d32f0ded6.tar.gz |
Reintroduce coverage report for JavaScript (!9133)
Diffstat (limited to 'config/karma.config.js')
-rw-r--r-- | config/karma.config.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/config/karma.config.js b/config/karma.config.js index 44229e2ee88..a1fbeab1f46 100644 --- a/config/karma.config.js +++ b/config/karma.config.js @@ -15,6 +15,13 @@ module.exports = function(config) { preprocessors: { 'spec/javascripts/**/*.js?(.es6)': ['webpack', 'sourcemap'], }, + reporters: ['progress', 'coverage-istanbul'], + coverageIstanbulReporter: { + reports: ['html', 'text-summary'], + dir: 'coverage-javascript/', + subdir: '.', + fixWebpackSourcePaths: true + }, webpack: webpackConfig, webpackMiddleware: { stats: 'errors-only' }, }); |