From 28ec1bb0d6d0477314a485ed06e069d40ab5c4dc Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Mon, 19 Jan 2026 15:19:10 -0800 Subject: [PATCH] Switch to line reporter and preset Chromium path Signed-off-by: Danila Fedorin --- playwright.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index f0c834b..cb73efb 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -22,7 +22,7 @@ export default defineConfig({ /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : 1, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: 'html', + reporter: 'line', /* 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('/')`. */ @@ -33,6 +33,10 @@ export default defineConfig({ animations: 'disabled', colorScheme: 'light', + + launchOptions: { + executablePath: process.env.PLAYWRIGHT_CHROMIUM_PATH + }, }, expect: {