(prefix: string)
| 14 | }) |
| 15 | |
| 16 | function makeTempDir(prefix: string): string { |
| 17 | const dir = mkdtempSync(join(tmpdir(), `${prefix}-`)) |
| 18 | tempDirs.push(dir) |
| 19 | return dir |
| 20 | } |
| 21 | |
| 22 | describe('local installer path migration', () => { |
| 23 | test('defaults to canonical .ncode/local when no legacy install exists', async () => { |
no outgoing calls
no test coverage detected