()
| 14 | const opencodeAdapter = require('../src/adapters/opencode'); |
| 15 | |
| 16 | function makeTmpDir() { |
| 17 | return fs.mkdtempSync(path.join(os.tmpdir(), 'evolver-opencode-test-')); |
| 18 | } |
| 19 | |
| 20 | function cleanup(dir) { |
| 21 | try { fs.rmSync(dir, { recursive: true, force: true }); } catch {} |
no outgoing calls
no test coverage detected