()
| 20 | } from '../src/installer/config-writer'; |
| 21 | |
| 22 | function createTempDir(): string { |
| 23 | return fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-installer-test-')); |
| 24 | } |
| 25 | |
| 26 | function cleanupTempDir(dir: string): void { |
| 27 | if (fs.existsSync(dir)) { |