(options: Record<string, any>, res: MockHttpResponse)
| 125 | } |
| 126 | |
| 127 | function respondToHealthcheck(options: Record<string, any>, res: MockHttpResponse): boolean { |
| 128 | if (options.method !== 'GET') return false; |
| 129 | res.emit('end'); |
| 130 | return true; |
| 131 | } |
| 132 | |
| 133 | function resolveCurrentDaemonCodeSignature(): string { |
| 134 | const root = findProjectRoot(); |
no test coverage detected