(testCase: RenderCase)
| 487 | } |
| 488 | |
| 489 | function renderDetailCase(testCase: RenderCase): string { |
| 490 | return `<section class="detail-case" data-case-details="${escapeHtml(testCase.id)}"> |
| 491 | <h2 class="detail-case-title">${escapeHtml(testCase.name)}</h2> |
| 492 | ${testCase.events.map(renderDetailCard).join('\n')} |
| 493 | </section>`; |
| 494 | } |
| 495 | |
| 496 | function renderDetailCard(rendered: RenderEvent): string { |
| 497 | const detail = eventDetail(rendered.event); |
nothing calls this directly
no test coverage detected