(token: string)
| 14 | const { copilotClient: client, openAiEndpoint, env, workDir } = await createSdkTestContext(); |
| 15 | |
| 16 | function createAuthenticatedClient(token: string): CopilotClient { |
| 17 | return createClientWithEnv( |
| 18 | { |
| 19 | COPILOT_DEBUG_GITHUB_API_URL: env.COPILOT_API_URL, |
| 20 | }, |
| 21 | token |
| 22 | ); |
| 23 | } |
| 24 | |
| 25 | function createClientWithEnv( |
| 26 | extraEnv: Record<string, string | undefined>, |
no test coverage detected
searching dependent graphs…