nehoid
Version:
NehoID is a high-performance TypeScript library designed for generating, validating, and managing unique identifiers in enterprise-grade applications.
14 lines • 585 B
TypeScript
export declare function describe(name: string, fn: () => void): void;
export declare function test(name: string, fn: () => void | Promise<void>): void;
export declare function expect<T>(actual: T): {
toBe: (expected: T) => void;
toEqual: (expected: T) => void;
toBeTruthy: () => void;
toBeFalsy: () => void;
toMatch: (regex: RegExp) => void;
toHaveLength: (length: number) => void;
toContain: (item: any) => void;
toBeGreaterThan: (expected: number) => void;
toThrow: (expected?: string | RegExp) => void;
};
//# sourceMappingURL=test-utils.d.ts.map