(disabled)
| 1071 | |
| 1072 | let running = false; |
| 1073 | function setAllButtonsDisabled(disabled) { |
| 1074 | panel.querySelector("#start").disabled = disabled; |
| 1075 | $manualButtons.querySelectorAll("button").forEach((b) => { b.disabled = disabled; b.style.opacity = disabled ? "0.5" : "1"; }); |
| 1076 | } |
| 1077 | |
| 1078 | async function runAuto() { |
| 1079 | if (running) { logLine("<i>Already running — wait for the current suite to finish.</i>"); return; } |
no test coverage detected