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: {