(line, url)
| 264 | } |
| 265 | |
| 266 | waitForBreakOnLine(line, url) { |
| 267 | return this |
| 268 | .waitForNotification( |
| 269 | (notification) => |
| 270 | this._isBreakOnLineNotification(notification, line, url), |
| 271 | `break on ${url}:${line}`); |
| 272 | } |
| 273 | |
| 274 | waitForPauseOnStart() { |
| 275 | return this |
no test coverage detected