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) • 665 B
TypeScript
export function getTestsFromFs(toolAdapter: any): globalThis.Promise<{
byId: {};
screenPatterns: never[];
count: number;
browserIds: Set<any>;
}>;
export function findScreens(screenPatterns: any): globalThis.Promise<string[]>;
export function askQuestion(question: any, { skipQuestions }?: {
skipQuestions: any;
}): globalThis.Promise<any>;
export function identifyOutdatedScreens(screenPaths: any, screenPatterns: any): any[];
export function identifyUnusedScreens(fsTests: any, { toolAdapter, mergedDbPath }?: {
toolAdapter: any;
mergedDbPath: any;
}): any[];
export function removeScreens(screenPaths: any): globalThis.Promise<void>;