(cliUrl: string)
| 76 | } |
| 77 | |
| 78 | function createConnectingClient(cliUrl: string): CopilotClient { |
| 79 | const connectedClient = new CopilotClient({ |
| 80 | connection: RuntimeConnection.forUri(cliUrl, { connectionToken: SHARED_TOKEN }), |
| 81 | }); |
| 82 | onTestFinishedForceStop(connectedClient); |
| 83 | return connectedClient; |
| 84 | } |
| 85 | |
| 86 | function getCliUrl(server: CopilotClient): string { |
| 87 | const port = (server as unknown as { runtimePort: number | null }).runtimePort; |
no test coverage detected
searching dependent graphs…