()
| 9 | const scriptPath = path.join(repoRoot, 'src', 'adapters', 'scripts', 'evolver-session-start.js'); |
| 10 | |
| 11 | function makeTmpDir() { |
| 12 | return fs.realpathSync(fs.mkdtempSync(path.join(os.tmpdir(), 'evolver-sstart-scope-'))); |
| 13 | } |
| 14 | function cleanup(dir) { |
| 15 | try { fs.rmSync(dir, { recursive: true, force: true }); } catch {} |
| 16 | } |
no outgoing calls
no test coverage detected