(client: CopilotClient)
| 22 | } |
| 23 | |
| 24 | async function forceStop(client: CopilotClient): Promise<void> { |
| 25 | try { |
| 26 | await client.forceStop(); |
| 27 | } catch { |
| 28 | // Runtime may already be gone. |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | function uniqueSessionId(prefix: string): string { |
| 33 | return `${prefix}-${randomUUID().replace(/-/g, "")}`; |
no test coverage detected
searching dependent graphs…