Skip to content

Commit

Permalink
qase reporter disabled for local run
Browse files Browse the repository at this point in the history
  • Loading branch information
chalapkoStanislav committed May 13, 2024
1 parent 0822ea7 commit c06647c
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions playwright.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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). */
Expand Down

0 comments on commit c06647c

Please sign in to comment.