poku
Version:
🐷 Poku makes testing easy for Node.js, Bun, Deno, and you at the same time.
11 lines (10 loc) • 374 B
TypeScript
export declare const test: {
(title: string, cb: () => Promise<unknown>): Promise<void>;
(title: string, cb: () => unknown): void;
(cb: () => Promise<unknown>): Promise<void>;
(cb: () => unknown): void;
} & {
todo: typeof import("./modifiers.js").todo;
skip: typeof import("./modifiers.js").skip;
only: typeof import("./modifiers.js").onlyIt;
};