( fn: (this: T) => void | Promise<void>, )
| 926 | * @param fn The function to implement the teardown behavior. |
| 927 | */ |
| 928 | export function afterAll<T>( |
| 929 | fn: (this: T) => void | Promise<void>, |
| 930 | ) { |
| 931 | addHook("afterAll", fn); |
| 932 | } |
| 933 | |
| 934 | /** |
| 935 | * Alias of {@linkcode afterAll}. |
no test coverage detected