From c3e64f8b681dd3246ae9368d36972ef942de417a Mon Sep 17 00:00:00 2001 From: archmoj Date: Wed, 10 Apr 2019 11:55:17 -0400 Subject: [PATCH] reduce jasmine2 limit from 20 to 5 --- .circleci/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/test.sh b/.circleci/test.sh index 050cb809b31..271ebd1e382 100755 --- a/.circleci/test.sh +++ b/.circleci/test.sh @@ -53,7 +53,7 @@ case $1 in jasmine2) set_tz - SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --tag=gl | circleci tests split)) + SHARDS=($(node $ROOT/tasks/shard_jasmine_tests.js --limit=5 --tag=gl | circleci tests split)) for s in ${SHARDS[@]}; do retry npm run test-jasmine -- "$s" --tags=gl --skip-tags=noCI --showSkipped done