(str: string)
| 102 | type TestProgress = { completed: number; failed: number; skipped: number }; |
| 103 | |
| 104 | function escapeRegex(str: string): string { |
| 105 | return str.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); |
| 106 | } |
| 107 | |
| 108 | function parseTestProgressLine(line: string): TestProgress | null { |
| 109 | const match = line.match(TEST_PROGRESS_LINE_REGEX); |
no outgoing calls
no test coverage detected