(report: string)
| 126 | } |
| 127 | |
| 128 | function stabilizeReportWOTime(report: string) { |
| 129 | return report.replaceAll(/(timestamp|hostname)=".*?"/g, '$1="..."') |
| 130 | } |
| 131 | |
| 132 | function matchJunitTime(xml: string, regex: RegExp) { |
| 133 | const match = xml.match(regex) |