| 1 | function connect(url, connected, disconnected) { |
| 2 | let connectWithRetry = c => c.start().then(() => connected()).catch(error => { |
| 3 | console.log('Failed to start SignalR connection: ' + error.message); |
| 4 | setTimeout(() => connectWithRetry(c), 5000); |
nothing calls this directly
no test coverage detected