(_info: any, options?: MockClientState["clientOptions"])
| 165 | transport: any |
| 166 | |
| 167 | constructor(_info: any, options?: MockClientState["clientOptions"]) { |
| 168 | clientCreateCount++ |
| 169 | this._state = getOrCreateClientState(lastCreatedClientName) |
| 170 | this._state.clientOptions = options |
| 171 | } |
| 172 | |
| 173 | async connect(transport: { start: () => Promise<void> }) { |
| 174 | this.transport = transport |
nothing calls this directly
no test coverage detected