We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbc81bd commit 5515a13Copy full SHA for 5515a13
1 file changed
.circleci/config.yml
@@ -150,6 +150,7 @@ jobs:
150
destination: test-logs
151
test_jest_windows_with_docker:
152
<<: *windows_big
153
+ parallelism: 4 # Run tests across 4 containers
154
steps:
155
- checkout
156
- install_node_npm:
@@ -158,7 +159,10 @@ jobs:
158
159
- run: npm ci
160
- run: docker version
161
- run:
- command: npm run test-jest-windows
162
+ name: Run windows tests in parallel
163
+ command: |
164
+ TEST=$(circleci tests glob "test/**/*.spec.ts" | circleci tests split --split-by=timings)
165
+ npm run test-jest-windows -- $TEST
166
no_output_timeout: 20m
167
test_jest_windows_no_docker:
168
0 commit comments