(url: string)
| 3219 | * URL is always printed first, so the user can copy it manually. |
| 3220 | */ |
| 3221 | const openInBrowser = (url: string): Effect.Effect<void> => |
| 3222 | Effect.sync(() => { |
| 3223 | openBrowser(url); |
| 3224 | }); |
| 3225 | |
| 3226 | const printNoRunningLocalWebApp = (): void => { |
| 3227 | console.log("Executor is not running."); |
no test coverage detected