Skip to content

Commit 061a5dd

Browse files
committed
fix: begging for this to work
1 parent f78f570 commit 061a5dd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,13 @@ jobs:
185185
command: |
186186
GLOB=$(circleci tests glob "test/windows/**/*.spec.ts")
187187
echo "GLOB: $GLOB"
188-
GLOB_SED=$(echo $GLOB | sed 's#\\#/#g')
188+
GLOB_SED=$(echo $GLOB | sed 's#\\\\#/#g')
189189
echo "GLOB_SED: $GLOB_SED"
190190
LIST_TEST=$(npx jest --listTests --config test/windows/jest.config.js)
191191
echo "LIST_TEST: $LIST_TEST"
192-
LIST_TEST_SED=$(echo $LIST_TEST | sed 's#\\#/#g')
192+
LIST_TEST_SED=$(echo $LIST_TEST | sed 's#\\\\#/#g')
193193
echo "LIST_TEST_SED: $LIST_TEST_SED"
194-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's#\\#/#g')
194+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's#\\\\#/#g')
195195
echo "TEST: $TEST"
196196
npm run test-jest-windows -- $TEST
197197
no_output_timeout: 20m
@@ -209,7 +209,7 @@ jobs:
209209
- run:
210210
name: Run Windows tests in parallel
211211
command: |
212-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's#\\#/#g')
212+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's#\\\\#/#g')
213213
npm run test-jest-windows -- $TEST
214214
build_cli:
215215
<<: *defaults

0 commit comments

Comments
 (0)