(handle: DaemonHandle)
| 79 | } |
| 80 | |
| 81 | function killDaemon(handle: DaemonHandle): void { |
| 82 | try { handle.proc.kill('SIGKILL'); } catch {} |
| 83 | try { fs.rmSync(handle.tempDir, { recursive: true, force: true }); } catch {} |
| 84 | } |
| 85 | |
| 86 | describe('pair-agent flow end-to-end (HTTP only, no ngrok)', () => { |
| 87 | let daemon: DaemonHandle; |
no outgoing calls
no test coverage detected