(prefix: string)
| 33 | }) |
| 34 | |
| 35 | function makeTempDir(prefix: string): string { |
| 36 | const dir = mkdtempSync(join(tmpdir(), `${prefix}-`)) |
| 37 | tempDirs.push(dir) |
| 38 | return dir |
| 39 | } |
| 40 | |
| 41 | describe('IDE lockfile discovery', () => { |
| 42 | test('uses NCode IDE lockfile paths under isolated config', async () => { |