this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Set reporters for playwright

+1 -1
+1 -1
playwright.config.js
··· 23 23 /* Opt out of parallel tests on CI. */ 24 24 workers: process.env.CI ? 1 : undefined, 25 25 /* Reporter to use. See https://playwright.dev/docs/test-reporters */ 26 - reporter: 'html', 26 + reporter: process.env.CI ? 'github' : 'list', 27 27 /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ 28 28 use: { 29 29 /* Base URL to use in actions like `await page.goto('/')`. */