html-reporter
Version:
Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.
14 lines (13 loc) • 389 B
TypeScript
import { ApiFacade } from './facade';
import type { Express } from 'express';
export interface ServerReadyData {
url: string;
}
export declare class GuiApi {
private _gui;
static create<T extends GuiApi>(this: new () => T): T;
constructor();
initServer(server: Express): Promise<void>;
serverReady(data: ServerReadyData): Promise<void>;
get gui(): ApiFacade;
}