(values: string[])
| 541 | } |
| 542 | |
| 543 | function formatQuotedList(values: string[]): string { |
| 544 | const shown = values.slice(0, 4).map((value) => JSON.stringify(value)); |
| 545 | const suffix = values.length > shown.length ? ` +${values.length - shown.length} more` : ''; |
| 546 | return `${shown.join(', ')}${suffix}`; |
| 547 | } |
| 548 | |
| 549 | function formatScreenshotRegionDetails(region: ScreenshotDiffRegion): string | null { |
| 550 | const details = [ |
no outgoing calls
no test coverage detected
searching dependent graphs…