Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 33ae963

Browse files
committedMar 9, 2017
use (plain) npm run test-jasmine on CI
- no need to set the CIRCLECI env variable again.
1 parent e52f020 commit 33ae963

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"docker": "node tasks/docker.js",
3434
"pretest": "node tasks/pretest.js",
3535
"test-jasmine": "karma start test/jasmine/karma.conf.js",
36-
"citest-jasmine": "CIRCLECI=0 karma start test/jasmine/karma.conf.js",
36+
"citest-jasmine": "CIRCLECI=1 karma start test/jasmine/karma.conf.js",
3737
"test-image": "node tasks/test_image.js",
3838
"test-image-gl2d": "node tasks/test_image.js gl2d_* --queue",
3939
"test-export": "node tasks/test_export.js",

‎tasks/ci_test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ case $CIRCLE_NODE_INDEX in
1414
;;
1515

1616
1)
17-
npm run citest-jasmine || EXIT_STATE=$?
17+
npm run test-jasmine || EXIT_STATE=$?
1818
npm run test-bundle || EXIT_STATE=$?
1919
exit $EXIT_STATE
2020
;;

0 commit comments

Comments
 (0)
Please sign in to comment.