Skip to content

Commit 86c9a4c

Browse files
committed
update config
1 parent dcf60df commit 86c9a4c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,9 @@ jobs:
4949
- checkout
5050
- run:
5151
name: Install deps
52-
command: yarn install
52+
command: |
53+
yarn install
54+
mkdir test_results
5355
- run:
5456
name: Install reporter
5557
command: yarn add cypress-circleci-reporter mocha --dev
@@ -58,7 +60,7 @@ jobs:
5860
command: yarn cypress install
5961
- run:
6062
name: Run cypress tests
61-
command: circleci tests glob "./cypress/e2e/**/*.cy.js" | circleci tests run --command="xargs yarn run test:e2e --headless --reporter cypress-circleci-reporter" --verbose --split-by=timings
63+
command: circleci tests glob "./cypress/e2e/**/*.cy.js" | circleci tests run --command="xargs yarn run test:e2e --headless --reporter cypress-circleci-reporter" --verbose --test-results-path="test_results" --split-by=timings
6264
- store_test_results:
6365
path: test_results
6466
- store_artifacts:

0 commit comments

Comments
 (0)