()
| 148 | constructor(private codeServerSocketPath: string) {} |
| 149 | |
| 150 | async canConnect() { |
| 151 | return canConnect(this.codeServerSocketPath) |
| 152 | } |
| 153 | |
| 154 | async getConnectedSocketPath(filePath: string): Promise<string | undefined> { |
| 155 | const response = await new Promise<GetSessionResponse>((resolve, reject) => { |
no test coverage detected