(fn, options)
| 415 | } |
| 416 | |
| 417 | beforeEach(fn, options) { |
| 418 | this.#test.createHook('beforeEach', fn, { |
| 419 | __proto__: null, |
| 420 | ...options, |
| 421 | parent: this.#test, |
| 422 | hookType: 'beforeEach', |
| 423 | loc: getCallerLocation(), |
| 424 | }); |
| 425 | } |
| 426 | |
| 427 | afterEach(fn, options) { |
| 428 | this.#test.createHook('afterEach', fn, { |
no test coverage detected