(
frame: string,
options: { useColor?: boolean } = {},
)
| 118 | } |
| 119 | |
| 120 | function formatReplayTestProgressSpinner( |
| 121 | frame: string, |
| 122 | options: { useColor?: boolean } = {}, |
| 123 | ): string { |
| 124 | return options.useColor ? colorizeProgressMarker(frame, 'blue') : frame; |
| 125 | } |
| 126 | |
| 127 | function formatReplayTestLiveProgressStepSuffix( |
| 128 | event: ReplayTestStep, |
no test coverage detected