()
| 425 | * connections that the server will immediately kill. |
| 426 | */ |
| 427 | const init = async () => { |
| 428 | if (await isLoggedIn()) { |
| 429 | void getWebSocket(); |
| 430 | } |
| 431 | // If no cookies, the WebSocket will be created on demand when |
| 432 | // getWebSocket() is called by a user action (e.g. inferEntities). |
| 433 | }; |
| 434 | |
| 435 | void init(); |
no test coverage detected