diff --git a/tests/playwright.config.js b/tests/playwright.config.js index 20d93d2..c0b2963 100644 --- a/tests/playwright.config.js +++ b/tests/playwright.config.js @@ -12,9 +12,9 @@ module.exports = defineConfig({ /* Retry on CI only */ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ - workers: process.env.CI ? 1 : undefined, + workers: process.env.CI ? 2 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: 'html', + reporter: [["list"], ["html"], ...(process.env.CI ? [["github"]] : [])], /* Screenshot settings */ snapshotPathTemplate: '{testDir}/screenshots/{testFilePath}/{testName}/{arg}{ext}',