Context import { Context } from "destack:test"; Test callback context. export newtype interface Context { output: Dynamic; resource(key: ResourceKey, create: () => T): T; cleanup(body: () => void | Promise): void; snapshot(name: string, value: T, options?: SnapshotOptions | undefined): void; } language/library/src/test/result.ds:20:32 Members output: Dynamic Test output sink. resource(key: ResourceKey, create: () => T): T Create or return one resource. cleanup(body: () => void | Promise): void Clean up one resource after this run. snapshot(name: string, value: T, options?: SnapshotOptions | undefined): void Compare a value against a named snapshot.