Skip to content

Commit 6c8804f

Browse files
committed
trying shards in jasmine3 test
1 parent 61bdc63 commit 6c8804f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.circleci/test.sh

+5-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,11 @@ case $1 in
6565
jasmine3)
6666
set_tz
6767

68-
npm run test-jasmine -- --tags=flaky --skip-tags=gl,noCI || EXIT_STATE=$?
68+
SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --tag=flaky))
69+
70+
for s in ${SHARDS[@]}; do
71+
retry npm run test-jasmine -- --tags=flaky --skip-tags=noCI
72+
done
6973

7074
exit $EXIT_STATE
7175
;;

0 commit comments

Comments
 (0)