(fn, options)
| 405 | } |
| 406 | |
| 407 | after(fn, options) { |
| 408 | this.#test.createHook('after', fn, { |
| 409 | __proto__: null, |
| 410 | ...options, |
| 411 | parent: this.#test, |
| 412 | hookType: 'after', |
| 413 | loc: getCallerLocation(), |
| 414 | }); |
| 415 | } |
| 416 | |
| 417 | beforeEach(fn, options) { |
| 418 | this.#test.createHook('beforeEach', fn, { |
nothing calls this directly
no test coverage detected