UNPKG

1.57 kBTypeScriptView Raw
1import { BooleanAssertionFunction, ComparatorAssertionFunction, ErrorAssertionFunction, MessageAssertionFunction, RootTest, TestFunction, TestHarness } from './interfaces';
2export * from './interfaces';
3export { tapeTapLike, mochaTapLike } from './reporter';
4export { AssertPrototype } from './assertion';
5export declare const test: RootTest;
6export declare const skip: TestFunction;
7export declare const only: TestFunction;
8export declare const equal: ComparatorAssertionFunction;
9export declare const equals: ComparatorAssertionFunction;
10export declare const eq: ComparatorAssertionFunction;
11export declare const deepEqual: ComparatorAssertionFunction;
12export declare const notEqual: ComparatorAssertionFunction;
13export declare const notEquals: ComparatorAssertionFunction;
14export declare const notEq: ComparatorAssertionFunction;
15export declare const notDeepEqual: ComparatorAssertionFunction;
16export declare const is: ComparatorAssertionFunction;
17export declare const same: ComparatorAssertionFunction;
18export declare const isNot: ComparatorAssertionFunction;
19export declare const notSame: ComparatorAssertionFunction;
20export declare const ok: BooleanAssertionFunction;
21export declare const truthy: BooleanAssertionFunction;
22export declare const notOk: BooleanAssertionFunction;
23export declare const falsy: BooleanAssertionFunction;
24export declare const fail: MessageAssertionFunction;
25export declare const throws: ErrorAssertionFunction;
26export declare const doesNotThrow: ErrorAssertionFunction;
27export declare const createHarness: (opts?: {}) => TestHarness;