Skip to content

Commit 32b9696

Browse files
committed
swap containers for test-export <-> test-bundle
- in an effort to reduce image-server "stress" in container 0 - this should also reduce total test time as test-jasmine is by far the slowest test command.
1 parent 667913c commit 32b9696

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tasks/ci_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ case $CIRCLE_NODE_INDEX in
77
0)
88
npm run test-image || EXIT_STATE=$?
99
npm run test-image-gl2d || EXIT_STATE=$?
10-
npm run test-export || EXIT_STATE=$?
10+
npm run test-bundle || EXIT_STATE=$?
1111
npm run test-syntax || EXIT_STATE=$?
1212
npm run lint || EXIT_STATE=$?
1313
exit $EXIT_STATE
1414
;;
1515

1616
1)
1717
npm run test-jasmine || EXIT_STATE=$?
18-
npm run test-bundle || EXIT_STATE=$?
18+
npm run test-export || EXIT_STATE=$?
1919
exit $EXIT_STATE
2020
;;
2121

0 commit comments

Comments
 (0)