()
| 118 | |
| 119 | const proxy: SSHAuthProxy = { |
| 120 | stop() { |
| 121 | server.stop(true) |
| 122 | try { |
| 123 | unlinkSync(socketPath) |
| 124 | } catch { |
| 125 | // Socket file may already be cleaned up |
| 126 | } |
| 127 | }, |
| 128 | } |
| 129 | |
| 130 | return { |
nothing calls this directly
no test coverage detected