Skip to content

Commit ecc7128

Browse files
committed
chore: store timings
1 parent d5aa22a commit ecc7128

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.circleci/config.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,16 +189,18 @@ jobs:
189189
command: |
190190
GLOB=$(circleci tests glob "test/windows/**/*.spec.ts")
191191
echo "GLOB: $GLOB"
192-
GLOB_SED=$(echo $GLOB | sed s#$(pwd)/##g | sed 's#\\\\#/#g')
192+
GLOB_SED=$(echo $GLOB | sed s#$(pwd)\\\\\##g | sed 's#\\\\#/#g')
193193
echo "GLOB_SED: $GLOB_SED"
194194
LIST_TEST=$(npx jest --listTests --config test/windows/jest.config.js)
195195
echo "LIST_TEST: $LIST_TEST"
196-
LIST_TEST_SED=$(echo $LIST_TEST | sed s#$(pwd)/##g | sed 's#\\\\#/#g')
196+
LIST_TEST_SED=$(echo $LIST_TEST | sed s#$(pwd)\\\\##g | sed 's#\\\\#/#g')
197197
echo "LIST_TEST_SED: $LIST_TEST_SED"
198198
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's#\\\\#/#g')
199199
echo "TEST: $TEST"
200200
npm run test-jest-windows -- $TEST
201201
no_output_timeout: 20m
202+
- store_test_results:
203+
path: ./reports/
202204
test_jest_windows_no_docker:
203205
<<: *windows_big
204206
parallelism: 2 # Run tests across 2 containers
@@ -215,6 +217,8 @@ jobs:
215217
command: |
216218
TEST=$(circleci tests glob "test/windows/**/*.spec.ts" | circleci tests split --split-by=timings | sed 's#\\\\#/#g')
217219
npm run test-jest-windows -- $TEST
220+
- store_test_results:
221+
path: ./reports/
218222
build_cli:
219223
<<: *defaults
220224
resource_class: medium

0 commit comments

Comments
 (0)