(label)
| 312 | function skip(msg) { state.skip++; setCounts(); logLine(`⏭️ ${escapeHtml(msg)}`); } |
| 313 | |
| 314 | function showProgress(label) { |
| 315 | $progressWrap.style.display = ""; |
| 316 | $progressLabel.textContent = label; |
| 317 | $progressBar.style.width = "0%"; |
| 318 | } |
| 319 | function updateProgress(loaded, total) { |
| 320 | if (total > 0) { |
| 321 | $progressBar.style.width = Math.min(100, Math.round((loaded / total) * 100)) + "%"; |
no outgoing calls
no test coverage detected