summaryrefslogtreecommitdiff
path: root/config/karma.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'config/karma.config.js')
-rw-r--r--config/karma.config.js10
1 files changed, 1 insertions, 9 deletions
diff --git a/config/karma.config.js b/config/karma.config.js
index 59b95427dbc..44229e2ee88 100644
--- a/config/karma.config.js
+++ b/config/karma.config.js
@@ -13,17 +13,9 @@ module.exports = function(config) {
{ pattern: 'spec/javascripts/fixtures/**/*@(.json|.html|.html.raw)', included: false },
],
preprocessors: {
- 'spec/javascripts/**/*.js?(.es6)': ['webpack', 'sourcemap', 'coverage'],
+ 'spec/javascripts/**/*.js?(.es6)': ['webpack', 'sourcemap'],
},
- reporters: ['progress', 'coverage'],
webpack: webpackConfig,
webpackMiddleware: { stats: 'errors-only' },
- coverageReporter: {
- dir: './coverage-javascript',
- reporters: [
- { type: 'html', subdir: 'default' },
- { type: 'text-summary' }
- ],
- }
});
};