Change to reporters suggested by Karma

This commit is contained in:
Raoul Snyman 2019-08-26 14:57:18 -07:00
parent 24b1620da9
commit 02e7235fd9
1 changed files with 4 additions and 1 deletions

View File

@ -32,13 +32,16 @@ module.exports = function(config) {
// test results reporter to use
// possible values: "dots", "progress"
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
reporters: ["progress", "coverage"],
reporters: ["dots", "junit"],
// configure the coverateReporter
/* coverageReporter: {
type : "html",
dir : "htmlcov/"
}, */
junitReporter: {
outputFile: "test-results.xml"
}
// web server port
port: 9876,