playwright: add list reporter

This commit is contained in:
Sanne Raymaekers 2025-03-05 17:14:12 +01:00 committed by Klara Simickova
parent db144b8ffc
commit f0a3574cda

View file

@ -6,7 +6,10 @@ export default defineConfig({
workers: 1,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 1 : 0,
reporter: 'html',
reporter: [
['html'],
['list'],
],
use: {
headless: true,
baseURL: 'http://127.0.0.1:9090',