(fn, timeout)
| 112 | const beforeEach: THook = (fn, timeout) => |
| 113 | _addHook(fn, 'beforeEach', beforeEach, timeout); |
| 114 | const beforeAll: THook = (fn, timeout) => |
| 115 | _addHook(fn, 'beforeAll', beforeAll, timeout); |
| 116 | const afterEach: THook = (fn, timeout) => |
| 117 | _addHook(fn, 'afterEach', afterEach, timeout); |
| 118 | const afterAll: THook = (fn, timeout) => |