()
| 231 | }, |
| 232 | |
| 233 | beforeRun() { |
| 234 | let command = this; |
| 235 | |
| 236 | return new Promise(function (resolve) { |
| 237 | setTimeout(function () { |
| 238 | command._beforeRunFinished = true; |
| 239 | resolve(); |
| 240 | }, 5); |
| 241 | }); |
| 242 | }, |
| 243 | |
| 244 | run() { |
| 245 | if (!this._beforeRunFinished) { |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…