()
| 1292 | // --- State helpers --- |
| 1293 | |
| 1294 | resume() { |
| 1295 | this.broken = false; |
| 1296 | this.running = true; |
| 1297 | this.promptShown = false; |
| 1298 | setTimeout(() => this.showPrompt(), 0); |
| 1299 | } |
| 1300 | |
| 1301 | requireBroken() { |
| 1302 | if (!this.broken) { |
no test coverage detected