(content, label)
| 407 | return Array.from(content.matchAll(pattern)).map((match) => match[1].trim()); |
| 408 | } |
| 409 | |
| 410 | function extractReportLine(content, label) { |
| 411 | const lines = extractReportLines(content, label); |
| 412 | return lines.length > 0 ? lines[0] : null; |
| 413 | } |
| 414 | |
| 415 | function extractLastReportLine(content, label) { |
no test coverage detected