Skip to content

Commit f78f570

Browse files
committed
fix: pleasseee
1 parent 4677e3b commit f78f570

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.circleci/config.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)