Skip to content

Commit bec12e1

Browse files
committed
fix: more debug
1 parent b66e5c2 commit bec12e1

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,9 @@ jobs:
185185
command: |
186186
TESTT=$(circleci tests glob "test/windows/**/*.spec.ts")
187187
echo "TESTT: $TESTT"
188-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's|\\|/|g; s|test/windows/||g')
188+
AA=$(echo $TESTT | sed 's#\\#/#g')
189+
echo "AA: $AA"
190+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's#\\#/#g')
189191
echo "TEST: $TEST"
190192
npm run test-jest-windows -- $TEST
191193
no_output_timeout: 20m
@@ -203,7 +205,7 @@ jobs:
203205
- run:
204206
name: Run Windows tests in parallel
205207
command: |
206-
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's|\\|/|g; s|test/windows/||g')
208+
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's#\\#/#g')
207209
npm run test-jest-windows -- $TEST
208210
build_cli:
209211
<<: *defaults

0 commit comments

Comments
 (0)