(dir)
| 14 | return fs.realpathSync(fs.mkdtempSync(path.join(os.tmpdir(), 'evolver-projdir-test-'))); |
| 15 | } |
| 16 | function cleanup(dir) { |
| 17 | try { fs.rmSync(dir, { recursive: true, force: true }); } catch {} |
| 18 | } |
| 19 | |
| 20 | describe('resolveProjectDir', () => { |
| 21 | // Snapshot and restore the env vars + cwd we mutate, so tests are isolated |
no outgoing calls
no test coverage detected