(root: string, pid: number, startedAt = Date.now())
| 22 | } |
| 23 | |
| 24 | function rec(root: string, pid: number, startedAt = Date.now()): DaemonRecord { |
| 25 | return { root, pid, version: '1.0.0', socketPath: `${root}/.codegraph/daemon.sock`, startedAt }; |
| 26 | } |
| 27 | |
| 28 | describe('daemon-registry', () => { |
| 29 | let tmpHome: string; |
no outgoing calls
no test coverage detected