💚(ci) use list reporter in addition to html

This will output lines to the testing jobs' logs so we know how many
tests are run even when jobs are eventually cancelled.
This commit is contained in:
Laurent Bossavit
2024-10-29 19:44:32 +01:00
committed by Laurent Bossavit
parent c4ea62dc1f
commit a736a9143f

View File

@@ -22,7 +22,7 @@ export default defineConfig({
/* Opt out of parallel tests on CI. */
workers: process.env.CI ? 1 : undefined,
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
reporter: [['html', { outputFolder: './report' }]],
reporter: [['html', { outputFolder: './report' }], ['list']],
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
use: {
baseURL: baseURL,