(url: URL | string)
| 198 | } |
| 199 | |
| 200 | public async openSignalRoute(url: URL | string): Promise<void> { |
| 201 | const window = await this.getWindow(); |
| 202 | await window.evaluate( |
| 203 | `window.SignalCI.openSignalRoute(${JSON.stringify(url.toString())})` |
| 204 | ); |
| 205 | } |
| 206 | |
| 207 | public async getSocketStatus(): Promise<SocketStatuses> { |
| 208 | const window = await this.getWindow(); |
no test coverage detected