diff --git a/.github/workflows/tests-e2e.yml b/.github/workflows/tests-e2e.yml index 98b8328d..acb3c22d 100644 --- a/.github/workflows/tests-e2e.yml +++ b/.github/workflows/tests-e2e.yml @@ -13,10 +13,10 @@ jobs: fail-fast: false matrix: include: - - name: Chrome - project: chrome - target: chrome - runs-on: ubuntu-22.04 + # - name: Chrome + # project: chrome + # target: chrome + # runs-on: ubuntu-22.04 # - name: Firefox # project: firefox # target: firefox @@ -49,6 +49,7 @@ jobs: run: pnpm test:e2e:${{ matrix.project }} env: PLAYWRIGHT_PROJECT: ${{ matrix.project }} + DEBUG: 'pw:browser' PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS: '1' TEST_WALLET_ORIGIN: ${{ vars.E2E_WALLET_URL_ORIGIN }} TEST_WALLET_USERNAME: ${{ vars.E2E_WALLET_USERNAME }} diff --git a/playwright.config.ts b/playwright.config.ts index 17f6d6a3..bcf4b658 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -26,7 +26,7 @@ export default defineConfig({ ], ], use: { - trace: 'retain-on-failure', + trace: 'on', actionTimeout: 8_000, navigationTimeout: 10_000, },