(fn, options)
| 425 | } |
| 426 | |
| 427 | afterEach(fn, options) { |
| 428 | this.#test.createHook('afterEach', fn, { |
| 429 | __proto__: null, |
| 430 | ...options, |
| 431 | parent: this.#test, |
| 432 | hookType: 'afterEach', |
| 433 | loc: getCallerLocation(), |
| 434 | }); |
| 435 | } |
| 436 | |
| 437 | waitFor(condition, options = kEmptyObject) { |
| 438 | validateFunction(condition, 'condition'); |
no test coverage detected