Start the connecting spinner. Stopped by first updateIdleStatus().
()
| 168 | |
| 169 | /** Start the connecting spinner. Stopped by first updateIdleStatus(). */ |
| 170 | function startConnecting(): void { |
| 171 | stopConnecting() |
| 172 | renderConnectingLine() |
| 173 | connectingTimer = setInterval(() => { |
| 174 | connectingTick++ |
| 175 | renderConnectingLine() |
| 176 | }, 150) |
| 177 | } |
| 178 | |
| 179 | /** Stop the connecting spinner. */ |
| 180 | function stopConnecting(): void { |
no test coverage detected