mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-07-18 09:04:54 +00:00
chore: show individual test names in CI Playwright output (#7462)
Add 'list' reporter alongside 'github' reporter in CI. The 'github' reporter only shows failures as PR annotations. The 'list' reporter shows each test with pass/fail status in the log output, making it easy to see which tests ran and passed. Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
66249b5d7e
commit
2c0c4df90e
1 changed files with 1 additions and 1 deletions
|
|
@ -13,7 +13,7 @@ export default defineConfig({
|
|||
fullyParallel: true,
|
||||
/* Fail the build on CI if you accidentally left test.only in the source code. */
|
||||
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
||||
reporter: process.env.CI ? 'github' : 'html',
|
||||
reporter: process.env.CI ? [['github'], ['list']] : 'html',
|
||||
expect: { timeout: defaultExpectTimeout },
|
||||
timeout: defaultTestTimeout,
|
||||
retries: process.env.CI ? 2 : 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue