(directory: string)
| 70 | } |
| 71 | |
| 72 | function tryRemoveDirectory(directory: string): void { |
| 73 | try { |
| 74 | rmSync(directory, { recursive: true, force: true }); |
| 75 | } catch { |
| 76 | // Temp directories are reclaimed by the harness/OS. |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | function createLocalMarketplaceFixture(): string { |
| 81 | const directory = createUniqueDirectory("copilot-e2e-mp"); |
no outgoing calls
no test coverage detected
searching dependent graphs…