Skip to content

Commit 26ec9a2

Browse files
committed
use dots reporter for noCI test run by GitHub actions
1 parent b5d7c00 commit 26ec9a2

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
@@ -129,7 +129,9 @@ if(argv['report-progress'] || argv['report-spec'] || argv['report-dots']) {
129129
if(argv['report-spec']) reporters.push('spec');
130130
if(argv['report-dots']) reporters.push('dots');
131131
} else {
132-
if(isCI) {
132+
if(process.argv.indexOf('--tags=noCI,noCIdep')) {
133+
reporters.push('dots');
134+
} else if(isCI) {
133135
reporters.push('spec');
134136
} else {
135137
if(isFullSuite) {

0 commit comments

Comments
 (0)