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