diff --git a/e2e/playwright.config.ts b/e2e/playwright.config.ts index b137e9c3..1d55fa6a 100644 --- a/e2e/playwright.config.ts +++ b/e2e/playwright.config.ts @@ -28,7 +28,7 @@ export default defineConfig({ baseURL: 'http://127.0.0.1:3000', /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ - trace: !!process.env.CI ? 'off' : 'on', + trace: 'on', screenshot: 'off', video: 'on', }, diff --git a/e2e/tests/bootstrap.spec.ts b/e2e/tests/bootstrap.spec.ts index bda1a913..865fa235 100644 --- a/e2e/tests/bootstrap.spec.ts +++ b/e2e/tests/bootstrap.spec.ts @@ -1,5 +1,9 @@ import { expect, test } from '@playwright/test'; +test.use({ + trace: !!process.env.CI ? 'off' : 'on', +}) + test('Bootstrap', async ({ page }) => { test.slow();