Use csvReporter as well when running BiDi tests locally.

This commit is contained in:
Henrik Skupin 2024-12-30 11:50:13 +01:00
parent 4819747c85
commit 1bed413c20
No known key found for this signature in database
GPG key ID: AEB189C8ED815074

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;