From 940230d43a272d6e5758dd88f0f6d9600176b73d Mon Sep 17 00:00:00 2001 From: Henrik Skupin Date: Mon, 30 Dec 2024 23:48:22 +0100 Subject: [PATCH] Use csvReporter as well when running BiDi tests locally (#34167) --- tests/bidi/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/bidi/playwright.config.ts b/tests/bidi/playwright.config.ts index 8dbe5b2b9d..5fb370482c 100644 --- a/tests/bidi/playwright.config.ts +++ b/tests/bidi/playwright.config.ts @@ -42,6 +42,7 @@ const reporters = () => { ['./csvReporter', { outputFile: path.join(outputDir, 'report.csv') }], ] : [ ['html', { open: 'on-failure' }], + ['./csvReporter', { outputFile: path.join(outputDir, 'report.csv') }], ['./expectationReporter', { rebase: false }], ]; return result;