(socket: string)
| 156 | } |
| 157 | |
| 158 | function getCapabilityPath(socket: string): string { |
| 159 | const digest = createHash('sha256').update(socket).digest('hex') |
| 160 | return join(getCapabilityDir(), `${digest}.json`) |
| 161 | } |
| 162 | |
| 163 | function isNotFound(error: unknown): boolean { |
| 164 | return ( |
no test coverage detected