From be6447d3ce7b4263f1715d006d20691131221322 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=98=99=E2=97=A6=20The=20Tablet=20=E2=9D=80=20GamerGirla?= =?UTF-8?q?ndCo=20=E2=97=A6=E2=9D=A7?= Date: Thu, 24 Oct 2024 21:02:17 -0400 Subject: [PATCH] disable opening test report in browser because it's annoying as shit --- packages/test-project/playwright.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/test-project/playwright.config.ts b/packages/test-project/playwright.config.ts index aa72139..0c223fa 100644 --- a/packages/test-project/playwright.config.ts +++ b/packages/test-project/playwright.config.ts @@ -26,7 +26,7 @@ export default defineConfig({ /* Opt out of parallel tests on CI. */ workers: 1, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: 'html', + reporter: [['html', {open: "never"}]], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */ @@ -39,6 +39,7 @@ export default defineConfig({ } }, + outputDir: "playwright-report" /* Configure projects for major browsers */