()
| 45 | |
| 46 | |
| 47 | def open_browser(): |
| 48 | # sleep(1) |
| 49 | while not is_server_ready('http://localhost:3000/'): |
| 50 | sleep(0.1) |
| 51 | # Wait for a few seconds before opening the browser |
| 52 | webbrowser.open('http://localhost:3000/') |
| 53 | |
| 54 | def open_browser_in_thread(): |
| 55 | if not is_vmish: |
nothing calls this directly
no test coverage detected