(
event: ReplayTestResult,
options: { useColor?: boolean } = {},
)
| 243 | } |
| 244 | |
| 245 | function formatReplayProgressDuration( |
| 246 | event: ReplayTestResult, |
| 247 | options: { useColor?: boolean } = {}, |
| 248 | ): string { |
| 249 | const duration = formatDurationSeconds(event.durationMs ?? 0); |
| 250 | return options.useColor ? colorizeProgressMarker(duration, 'yellow') : duration; |
| 251 | } |
| 252 | |
| 253 | function isReplayTestCompletionProgressEvent(event: ReplayTestResult): boolean { |
| 254 | return ( |
no test coverage detected