mirror of
https://github.com/ether/etherpad-lite.git
synced 2026-04-17 19:41:21 +02: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
@ -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…
x
Reference in New Issue
Block a user