qase reporter disabled for local run

This commit is contained in:
Staschalapko 2024-05-13 17:44:25 +03:00
parent 0822ea710a
commit c06647cfea

View File

@ -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). */