File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments