(location: string | undefined, message: string)
| 41 | } |
| 42 | |
| 43 | function normalizeDiagnosticKey(location: string | undefined, message: string): string { |
| 44 | return `${location ?? ''}|${message}`.trim().toLowerCase(); |
| 45 | } |
| 46 | |
| 47 | function normalizeTestIdentifier(value: string | undefined): string { |
| 48 | return (value ?? '').trim().replace(/\(\)$/u, '').toLowerCase(); |
no outgoing calls
no test coverage detected