( fn: (this: T) => void | Promise<void>, )
| 977 | * `Deno.test.afterAll()` (Deno 2.5+) instead. |
| 978 | */ |
| 979 | export function afterAll<T>( |
| 980 | fn: (this: T) => void | Promise<void>, |
| 981 | ) { |
| 982 | addHook("afterAll", fn); |
| 983 | } |
| 984 | |
| 985 | /** |
| 986 | * Alias of {@linkcode afterAll}. |
no test coverage detected