We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c1056a commit e03f2afCopy full SHA for e03f2af
1 file changed
src/normalizeReport.ts
@@ -68,6 +68,7 @@ export function normalizeReport(report: FlakinessReport.Report): FlakinessReport
68
duration: attempt.duration === 0 ? undefined : attempt.duration,
69
stdout: attempt.stdout && attempt.stdout.length ? attempt.stdout : undefined,
70
stderr: attempt.stderr && attempt.stderr.length ? attempt.stderr : undefined,
71
+ errors: attempt.errors && attempt.errors.length ? attempt.errors : undefined,
72
stdio: attempt.stdio && attempt.stdio.length ? attempt.stdio.map(entry => ({
73
...entry,
74
stream: entry.stream === FlakinessReport.STREAM_STDOUT ? undefined : entry.stream,
0 commit comments