Skip to content

Commit 33ae963

Browse files
committed
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

+1-1
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

+1-1
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)