Skip to content

Commit 1112fd8

Browse files
committed
fix: fix windows jest
1 parent 2a5a88e commit 1112fd8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ jobs:
168168
- run:
169169
name: Run Windows tests in parallel
170170
command: |
171-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings)
171+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's|test\\windows\\||g' | sed 's|\\|/|g')
172172
npm run test-jest-windows -- $TEST
173173
no_output_timeout: 20m
174174
test_jest_windows_no_docker:
@@ -185,7 +185,7 @@ jobs:
185185
- run:
186186
name: Run Windows tests in parallel
187187
command: |
188-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings)
188+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's|test\\windows\\||g' | sed 's|\\|/|g')
189189
npm run test-jest-windows -- $TEST
190190
build:
191191
<<: *defaults

0 commit comments

Comments
 (0)