(target: CopilotClient)
| 62 | } |
| 63 | |
| 64 | async function forceStop(target: CopilotClient): Promise<void> { |
| 65 | try { |
| 66 | await target.forceStop(); |
| 67 | } catch { |
| 68 | // Runtime may already be gone. |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | function tryRemoveDirectory(directory: string): void { |
| 73 | try { |
no test coverage detected
searching dependent graphs…