(value: string | undefined)
| 45 | } |
| 46 | |
| 47 | function normalizeTestIdentifier(value: string | undefined): string { |
| 48 | return (value ?? '').trim().replace(/\(\)$/u, '').toLowerCase(); |
| 49 | } |
| 50 | |
| 51 | function normalizeTestFailureLocation(location: string | undefined): string | null { |
| 52 | if (!location) { |
no outgoing calls
no test coverage detected