()
| 43 | console.log('Attempting handshake with backend', new Date()); |
| 44 | |
| 45 | const retry = () => { |
| 46 | if (backendInitialized || backgroundDisconnected) { |
| 47 | return; |
| 48 | } |
| 49 | handshakeWithBackend(); |
| 50 | setTimeout(retry, 500); |
| 51 | }; |
| 52 | retry(); |
| 53 | } |
| 54 | } |
no test coverage detected
searching dependent graphs…