diff --git a/.github/workflows/cypress.yaml b/.github/workflows/cypress.yaml index 043d495b24..1df1d35a3d 100644 --- a/.github/workflows/cypress.yaml +++ b/.github/workflows/cypress.yaml @@ -43,7 +43,7 @@ jobs: # wait for 3min, the build is long wait-on-timeout: 180 record: true - command: 'yarn test:cypress' + command: 'yarn test:cypress:record' env: E2E_TEST_USER_EMAIL: ${{ secrets.E2E_TEST_USER_EMAIL }} E2E_TEST_USER_PASSWORD: ${{ secrets.E2E_TEST_USER_PASSWORD }} diff --git a/package.json b/package.json index 647a6fe0c0..aa8c5732bb 100644 --- a/package.json +++ b/package.json @@ -56,6 +56,7 @@ "test": "jest", "test:cypress": "cypress run", "test:cypress:open": "cypress open", + "test:cypress:record": "cypress run --record", "coverage": "yarn test --coverage", "analyse:unused-exports": "node ./scripts/analyse_unused_exports.js", "postinstall": "./scripts/apply_patches.sh",