Skip to content
This repository was archived by the owner on Sep 3, 2022. It is now read-only.

Commit 67d4ad0

Browse files
committed
Improve CI reporting
The summary reporter doesn't show any details about test failures. This adds back the spec reporter but configures it to suppress output about failed tests.
1 parent df375b7 commit 67d4ad0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

karma.conf.ci.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,11 @@ module.exports = function(config) {
7474

7575
retryLimit: 5,
7676

77-
reporters: ['summary', 'junit'],
77+
reporters: ['spec', 'summary', 'junit'],
78+
79+
specReporter: {
80+
suppressPassed: true
81+
},
7882

7983
browsers: ['PhantomJS'].concat(Object.keys(customLaunchers)),
8084

0 commit comments

Comments
 (0)