Skip to content

Commit 61260d5

Browse files
committed
Turned error reporting back on by default to match old behviour before it was broken
1 parent 7aedbaa commit 61260d5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.changeset/tiny-apes-protect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
'@web/test-runner': patch
33
---
44

5-
Fixed error reporting and made browser logs optional in summary reporter
5+
Summary Reporter - re-enabled error reporting and made option to disable browser logs and error reporting in this reporter

packages/test-runner/src/reporter/summaryReporter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const dim = color([2, 0]);
2929

3030
/** Test reporter that summarizes all test for a given run */
3131
export function summaryReporter(opts: Options): Reporter {
32-
const { flatten = false, reportTestLogs = true, reportTestErrors = false } = opts ?? {};
32+
const { flatten = false, reportTestLogs = true, reportTestErrors = true } = opts ?? {};
3333
let args: ReporterArgs;
3434
let favoriteBrowser: string;
3535

0 commit comments

Comments
 (0)