MCPcopy Create free account
hub / github.com/denoland/std / afterAll

Function afterAll

testing/bdd.ts:928–932  ·  view source on GitHub ↗
(
  fn: (this: T) => void | Promise<void>,
)

Source from the content-addressed store, hash-verified

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

Callers 2

bdd_test.tsFile · 0.90
afterFunction · 0.85

Calls 1

addHookFunction · 0.85

Tested by

no test coverage detected