()
| 84 | // Notify emrun web server that this browser has successfully launched the |
| 85 | // page. Note that we may need to wait for the server to be ready. |
| 86 | var tryToSendPageload = () => { |
| 87 | try { |
| 88 | post('stdio.html', '^pageload^'); |
| 89 | } catch (e) { |
| 90 | setTimeout(tryToSendPageload, 50); |
| 91 | } |
| 92 | }; |
| 93 | tryToSendPageload(); |
| 94 | } |
| 95 | }; |
no test coverage detected