Use csvReporter as well when running BiDi tests locally (#34167)

This commit is contained in:
Henrik Skupin 2024-12-30 23:48:22 +01:00 committed by GitHub
parent cd32d1b08c
commit 940230d43a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -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;