(
event: ReplayTestResult,
options: ReplayTestProgressFormatOptions = {},
)
| 82 | } |
| 83 | |
| 84 | function formatReplayTestProgressEvent( |
| 85 | event: ReplayTestResult, |
| 86 | options: ReplayTestProgressFormatOptions = {}, |
| 87 | ): string | undefined { |
| 88 | if (event.status === 'fail' && event.retrying) return undefined; |
| 89 | const lines = [formatReplayTestCaseSummaryLine(event)]; |
| 90 | addReplayTestCaseDetailLines(lines, event, options); |
| 91 | if (options.verbose) { |
| 92 | lines.push(...replayTestProgressStepLines(event)); |
| 93 | } |
| 94 | return lines.join('\n'); |
| 95 | } |
| 96 | |
| 97 | function formatReplayTestLiveProgressLine( |
| 98 | event: ReplayTestStep, |
no test coverage detected