( page: Page, token: string, )
| 444 | * agent to be ready before returning. |
| 445 | */ |
| 446 | export const startAgent = async ( |
| 447 | page: Page, |
| 448 | token: string, |
| 449 | ): Promise<ChildProcess> => { |
| 450 | return startAgentWithCommand(page, token, coderBinary); |
| 451 | }; |
| 452 | |
| 453 | /** |
| 454 | * downloadCoderVersion downloads the version provided into a temporary dir and |
no test coverage detected