Skip to content

Commit ba5ccfb

Browse files
committed
handle CI not CIRCLECI env var in karma.conf
1 parent 491fd8a commit ba5ccfb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/jasmine/karma.conf.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var path = require('path');
44
var minimist = require('minimist');
55
var constants = require('../../tasks/util/constants');
66

7-
var isCI = !!process.env.CIRCLECI;
7+
var isCI = !!process.env.CI;
88
var argv = minimist(process.argv.slice(4), {
99
string: ['bundleTest', 'width', 'height'],
1010
'boolean': ['info', 'nowatch', 'failFast', 'verbose', 'Chrome', 'Firefox', 'IE11'],

0 commit comments

Comments
 (0)