Enable fancy karma reporters

cargo-cult luke's stuff from react-sdk
This commit is contained in:
Richard van der Hoff 2017-08-08 19:05:58 +01:00
parent df33d40285
commit 06ef674597
2 changed files with 16 additions and 3 deletions

View file

@ -88,9 +88,19 @@ module.exports = function (config) {
},
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress', 'junit'],
reporters: ['logcapture', 'spec', 'junit', 'summary'],
specReporter: {
suppressErrorSummary: false, // do print error summary
suppressFailed: false, // do print information about failed tests
suppressPassed: false, // do print information about passed tests
showSpecTiming: true, // print the time elapsed for each spec
},
client: {
captureLogs: true,
},
// web server port
port: 9876,