(url: string, projectName: string, options?: BrowserLaunchOptions)
| 636 | } |
| 637 | |
| 638 | function openStudioBrowser(url: string, projectName: string, options?: BrowserLaunchOptions): void { |
| 639 | if (options?.noOpen) return; |
| 640 | openBrowser(`${url}#project/${projectName}`, { |
| 641 | browserPath: options?.browserPath, |
| 642 | userDataDir: options?.userDataDir, |
| 643 | remoteDebuggingPort: options?.remoteDebuggingPort, |
| 644 | }); |
| 645 | } |
| 646 | |
| 647 | function printStudioSummary( |
| 648 | projectName: string, |
no test coverage detected