File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -183,14 +183,14 @@ jobs:
183183 - run :
184184 name : Run Windows tests in parallel
185185 command : |
186- TESTT =$(circleci tests glob "test/windows/**/*.spec.ts")
187- echo "TESTT : $TESTT "
188- AA =$(echo $TESTT | sed 's#\\#/#g')
189- echo "AA : $AA "
190- TESTTA =$(npx jest --listTests --config test/windows/jest.config.js)
191- echo "TESTTA : $TESTTA "
192- AAA =$(echo $TESTTA | sed 's#\\#/#g')
193- echo "AAA : $AAA "
186+ GLOB =$(circleci tests glob "test/windows/**/*.spec.ts")
187+ echo "GLOB : $GLOB "
188+ GLOB_SED =$(echo $GLOB | sed 's#\\#/#g')
189+ echo "GLOB_SED : $GLOB_SED "
190+ LIST_TEST =$(npx jest --listTests --config test/windows/jest.config.js)
191+ echo "LIST_TEST : $LIST_TEST "
192+ LIST_TEST_SED =$(echo $LIST_TEST | sed 's#\\#/#g')
193+ echo "LIST_TEST_SED : $LIST_TEST_SED "
194194 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
You can’t perform that action at this time.
0 commit comments