(url: string)
| 3239 | * URL is always printed first, so the user can copy it manually. |
| 3240 | */ |
| 3241 | const openInBrowser = (url: string): Effect.Effect<void> => |
| 3242 | Effect.sync(() => { |
| 3243 | openBrowser(url); |
| 3244 | }); |
| 3245 | |
| 3246 | const printNoRunningLocalWebApp = (): void => { |
| 3247 | console.log("Executor is not running."); |
no test coverage detected