We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5d7c00 commit 9dfec37Copy full SHA for 9dfec37
test/jasmine/karma.conf.js
@@ -145,6 +145,10 @@ var hasSpecReporter = reporters.indexOf('spec') !== -1;
145
if(!hasSpecReporter && argv.showSkipped) reporters.push('spec');
146
if(argv.verbose) reporters.push('verbose');
147
148
+if(process.argv.indexOf('--tags=noCI,noCIdep') !== -1) {
149
+ reporters = ['dots'];
150
+}
151
+
152
function func(config) {
153
// level of logging
154
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
0 commit comments