(offerOptions)
| 75 | } |
| 76 | |
| 77 | createOffer(offerOptions) { |
| 78 | return this.driver.executeAsyncScript((offerOptions) => { |
| 79 | const callback = arguments[arguments.length - 1]; |
| 80 | |
| 81 | pc.createOffer(offerOptions) |
| 82 | .then(callback, callback); |
| 83 | }, offerOptions); |
| 84 | } |
| 85 | createAnswer() { |
| 86 | return this.driver.executeAsyncScript(() => { |
| 87 | const callback = arguments[arguments.length - 1]; |
no outgoing calls
no test coverage detected