( fn: (this: T) => void | Promise<void>, )
| 957 | * @param fn The function to implement the teardown behavior. |
| 958 | */ |
| 959 | export function after<T>( |
| 960 | fn: (this: T) => void | Promise<void>, |
| 961 | ) { |
| 962 | afterAll(fn); |
| 963 | } |
| 964 | |
| 965 | /** |
| 966 | * Run some shared setup before each test in the suite. |