(text)
| 187 | $counts.textContent = `✅ ${p} ❌ ${f} ⏳ ${s}`; |
| 188 | } |
| 189 | function setStatus(text) { |
| 190 | $status.textContent = `Status: ${text}`; |
| 191 | } |
| 192 | function setQueue(items) { |
| 193 | $queue.textContent = items.length ? items.map((t, i) => `${i + 1}. ${t}`).join("\n") : "(none)"; |
| 194 | } |
no outgoing calls
no test coverage detected