(text: string, useColor: boolean)
| 613 | } |
| 614 | |
| 615 | function formatMuted(text: string, useColor: boolean): string { |
| 616 | return useColor ? colorize(text, 'dim') : text; |
| 617 | } |
| 618 | |
| 619 | function buildSnapshotNotices( |
| 620 | data: Record<string, unknown>, |
no test coverage detected