We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b898d11 commit c660b50Copy full SHA for c660b50
circle.yml
@@ -425,7 +425,10 @@ commands:
425
steps:
426
- restore_cached_workspace
427
- run:
428
- command: yarn workspace @packages/server test ./test/e2e/$(( $CIRCLE_NODE_INDEX ))_*spec* --browser <<parameters.browser>>
+ command: |
429
+ SPECS=`circleci tests glob "/root/cypress/packages/server/test/e2e/*spec*" | circleci tests split --split-by=timings`
430
+ echo SPECS=$SPECS
431
+ yarn workspace @packages/server test $SPECS --browser <<parameters.browser>>
432
- verify-mocha-results
433
- store_test_results:
434
path: /tmp/cypress
0 commit comments