export type TestContext = NodeTestContext | MochaTestContext | UvuTestContext; export interface NodeTestContext { name: string; } export interface MochaTestContext { test?: { file?: string; fullTitle(): string; }; } export interface UvuTestContext { __test__?: string; __suite__?: string; } export declare function getTestFile(context: TestContext): string | undefined; export declare function getTestName(context: TestContext): string | undefined; //# sourceMappingURL=TestContext.d.ts.map