(value: number)
| 494 | } |
| 495 | |
| 496 | function formatSignedPixels(value: number): string { |
| 497 | return value > 0 ? `+${value}` : String(value); |
| 498 | } |
| 499 | |
| 500 | function formatScreenshotDiffHints(data: ScreenshotDiffResult): string[] { |
| 501 | const hints: string[] = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…