We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c980851 commit ee9c974Copy full SHA for ee9c974
karma.conf.js
@@ -10,7 +10,7 @@ module.exports = function karmaConfig (config) {
10
reporters: [
11
// Reference: https://github.com/mlex/karma-spec-reporter
12
// Set reporter to print detailed results to console
13
- 'spec',
+ 'progress',
14
15
// Reference: https://github.com/karma-runner/karma-coverage
16
// Output code coverage files
@@ -39,7 +39,10 @@ module.exports = function karmaConfig (config) {
39
// Configure code coverage reporter
40
coverageReporter: {
41
dir: 'build/coverage/',
42
- type: 'html'
+ reporters: [
43
+ {type: 'text-summary'},
44
+ {type: 'html'}
45
+ ]
46
},
47
48
webpack: require('./webpack.config')('test'),
0 commit comments