(pid: number, timeoutMs: number)
| 168 | } |
| 169 | |
| 170 | async function waitProcessExit(pid: number, timeoutMs: number): Promise<boolean> { |
| 171 | return waitFor(() => !isAlive(pid), timeoutMs).then(() => true).catch(() => false); |
| 172 | } |
| 173 | |
| 174 | describe('Shared MCP daemon (issue #411)', () => { |
| 175 | let tempDir: string; // the (possibly symlinked) path processes are spawned with |
no test coverage detected