diff --git a/playwright.config.js b/playwright.config.js index d59bb8a2..bba63ae4 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -33,14 +33,16 @@ const config = { /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 3 : 3, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: [ - ['html'], - ['playwright-qase-reporter', - { - logging: true, - }, - ], - ], + reporter: process.env.CI + ? [ + ['html'], + ['playwright-qase-reporter', + { + logging: true, + }, + ], + ] + : [['html']], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */