( fn: (this: T) => void | Promise<void>, )
| 866 | * @param fn The function to implement the setup behavior. |
| 867 | */ |
| 868 | export function beforeAll<T>( |
| 869 | fn: (this: T) => void | Promise<void>, |
| 870 | ) { |
| 871 | addHook("beforeAll", fn); |
| 872 | } |
| 873 | |
| 874 | /** |
| 875 | * Alias of {@linkcode beforeAll} |
no test coverage detected