()
| 191 | } |
| 192 | |
| 193 | function renderCompareButton() { |
| 194 | elements.compareButton.textContent = state.compareMode |
| 195 | ? `Exit compare${state.compareIds.length ? ` (${state.compareIds.length}/2)` : ""}` |
| 196 | : "Compare reports"; |
| 197 | elements.compareButton.classList.toggle("button-active", state.compareMode); |
| 198 | } |
| 199 | |
| 200 | async function fetchRunDetail(runId) { |
| 201 | const response = await fetch(`/api/runs/${encodeURIComponent(runId)}`, { cache: "no-store" }); |
no outgoing calls
no test coverage detected