html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
17 lines (16 loc) • 626 B
TypeScript
export function getTestsFromFs(toolAdapter: any): Promise<{
byId: {};
screenPatterns: never[];
count: number;
browserIds: Set<any>;
}>;
export function findScreens(screenPatterns: any): Promise<any[]>;
export function askConfirm(question: any, { skipQuestions }?: {
skipQuestions: any;
}): Promise<any>;
export function identifyOutdatedScreens(screenPaths: any, screenPatterns: any): any[];
export function identifyUnusedScreens(fsTests: any, { toolAdapter, mergedDbPath }?: {
toolAdapter: any;
mergedDbPath: any;
}): Promise<any[]>;
export function removeScreens(screenPaths: any): Promise<void>;