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