(reportDir: string)
| 211 | } |
| 212 | |
| 213 | function reportEventsPath(reportDir: string): string { |
| 214 | return join(reportDir, `events-${process.pid}.jsonl`); |
| 215 | } |
| 216 | |
| 217 | function renderHtml(title: string, events: StoredReportEvent[]): string { |
| 218 | const cases = renderCases(groupByCase(events)); |