From b20cad7973405d1b8cdb5f10d657fd926e3db195 Mon Sep 17 00:00:00 2001 From: Andrey Kuzmin Date: Mon, 1 Apr 2024 19:59:46 +0200 Subject: [PATCH] Remove traces --- testing/playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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}",