(url: string)
| 3122 | * URL is always printed first, so the user can copy it manually. |
| 3123 | */ |
| 3124 | const openInBrowser = (url: string): Effect.Effect<void> => |
| 3125 | Effect.sync(() => { |
| 3126 | openBrowser(url); |
| 3127 | }); |
| 3128 | |
| 3129 | const printNoRunningLocalWebApp = (): void => { |
| 3130 | console.log("Executor is not running."); |
no test coverage detected