(line: string)
| 52 | const BUILD_ERROR_DIAGNOSTIC_PATTERN = /(?:^|\s)(?:fatal error|error):\s+\S/iu; |
| 53 | |
| 54 | export function isBuildErrorDiagnosticLine(line: string): boolean { |
| 55 | return BUILD_ERROR_DIAGNOSTIC_PATTERN.test(line); |
| 56 | } |
| 57 | |
| 58 | function normalizeSuiteName(rawSuiteName: string): string { |
| 59 | const parts = rawSuiteName.split('.').filter(Boolean); |
no outgoing calls
no test coverage detected