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