(tempDirs: string[])
| 23 | } |
| 24 | |
| 25 | export async function removeTempDirs(tempDirs: string[]): Promise<void> { |
| 26 | for (const dir of tempDirs.splice(0)) { |
| 27 | await removeTempDir(dir); |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | export async function waitForAgentWireEvent( |
| 32 | homeDir: string, |
no test coverage detected