(fn, options)
| 395 | } |
| 396 | |
| 397 | before(fn, options) { |
| 398 | this.#test.createHook('before', fn, { |
| 399 | __proto__: null, |
| 400 | ...options, |
| 401 | parent: this.#test, |
| 402 | hookType: 'before', |
| 403 | loc: getCallerLocation(), |
| 404 | }); |
| 405 | } |
| 406 | |
| 407 | after(fn, options) { |
| 408 | this.#test.createHook('after', fn, { |
no test coverage detected