diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index bd540ac..808c53f 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -39,6 +39,6 @@ jobs: - uses: actions/upload-artifact@v4 if: always() with: - name: playwright-report + name: playwright-report-${{ matrix.project }} path: testing/playwright-report/ retention-days: 30 diff --git a/testing/playwright.config.ts b/testing/playwright.config.ts index ec6d0d5..7bbe200 100644 --- a/testing/playwright.config.ts +++ b/testing/playwright.config.ts @@ -24,8 +24,8 @@ export default defineConfig({ /* Base URL to use in actions like `await page.goto('/')`. */ baseURL: `http://127.0.0.1:${PORT}`, - /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ - trace: "on-first-retry", + /* Do not collect the trace. See https://playwright.dev/docs/trace-viewer */ + trace: "off", }, snapshotPathTemplate: "snapshots/{arg}{ext}",