Skip to content

Commit 145f38f

Browse files
committed
use dots reporters in karma for performance tests
1 parent 80ac7ae commit 145f38f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/jasmine/karma.conf.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,9 @@ if(argv['report-progress'] || argv['report-spec'] || argv['report-dots']) {
140140
if(argv['report-spec']) reporters.push('spec');
141141
if(argv['report-dots']) reporters.push('dots');
142142
} else {
143-
if(isCI) {
143+
if(isPerformanceTest) {
144+
reporters.push('dots');
145+
} else if(isCI) {
144146
reporters.push('spec');
145147
} else {
146148
if(isFullSuite) {

0 commit comments

Comments
 (0)