magnitude-test
Version:
A TypeScript client for running automated UI tests through the Magnitude testing platform
6 lines (5 loc) • 391 B
TypeScript
export declare function findProjectRoot(startDir?: string): Promise<string | null>;
export declare function isProjectRoot(dir: string): Promise<boolean>;
export declare function discoverTestFiles(patterns: string[], cwd?: string): Promise<string[]>;
export declare function findConfig(searchRoot: string): string | null;
export declare function readConfig(configPath: string): Promise<any>;