(params)
| 406 | reject(new Error(`Timed out waiting for ${method}`)); |
| 407 | }, timeoutMs); |
| 408 | function handler(params) { |
| 409 | clearTimeout(timer); |
| 410 | cdp.off(method, handler); |
| 411 | resolve(params); |
| 412 | } |
| 413 | cdp.on(method, handler); |
| 414 | }); |
| 415 | } |
no test coverage detected