Skip to content

Commit 6aafb0a

Browse files
committed
Use dots reporter for Travis
1 parent 5bed2e6 commit 6aafb0a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

karma.conf.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@ const path = require('path');
33

44
process.traceDeprecation = true;
55

6-
let reporters = ['progress', 'coverage-istanbul'];
6+
let reporters = [
7+
process.env.TRAVIS ? 'dots' : 'progress',
8+
'coverage-istanbul'
9+
];
710
if (process.env.COVERALLS_REPO_TOKEN) {
811
reporters.push('coveralls');
912
}

0 commit comments

Comments
 (0)