From cbaa88910e28c3ac16aa48104b8cfd3e85e68e16 Mon Sep 17 00:00:00 2001 From: Mrugesh Mohapatra <1884376+raisedadead@users.noreply.github.com> Date: Thu, 3 Nov 2022 13:38:59 +0530 Subject: [PATCH] chore(ci): remove headless from cypress config (#48373) --- .github/workflows/e2e-mobile.yml | 2 +- .github/workflows/e2e-third-party.yml | 2 +- .github/workflows/e2e-web.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-mobile.yml b/.github/workflows/e2e-mobile.yml index 01d06e37705..a4c714abf78 100644 --- a/.github/workflows/e2e-mobile.yml +++ b/.github/workflows/e2e-mobile.yml @@ -65,7 +65,7 @@ jobs: wait-on-timeout: 1200 config: retries=1,screenshotOnRunFailure=false,video=false,baseUrl=http://localhost:3000/mobile/mobile-app/generated-tests/ browser: chrome - headless: true + spec: cypress/integration/mobile-learn/test-challenges.js env: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} diff --git a/.github/workflows/e2e-third-party.yml b/.github/workflows/e2e-third-party.yml index e7ca700e761..96fce5c650f 100644 --- a/.github/workflows/e2e-third-party.yml +++ b/.github/workflows/e2e-third-party.yml @@ -65,5 +65,5 @@ jobs: wait-on-timeout: 1200 config: baseUrl=http://localhost:8000 browser: chrome - headless: true + spec: cypress/e2e/third-party/*.js diff --git a/.github/workflows/e2e-web.yml b/.github/workflows/e2e-web.yml index f0d5a312400..1726fa47111 100644 --- a/.github/workflows/e2e-web.yml +++ b/.github/workflows/e2e-web.yml @@ -136,5 +136,5 @@ jobs: wait-on-timeout: 1200 config: baseUrl=http://localhost:8000 browser: ${{ matrix.browsers }} - headless: true + spec: ${{ matrix.spec }}