UNPKG

html-reporter

Version:

Html-reporter and GUI for viewing and managing results of a tests run. Currently supports Testplane and Hermione.

19 lines (18 loc) 552 B
import { ServerArgs } from './index'; import { ServerReadyData } from './api'; import { BrowserFeature, Feature } from '../constants'; import { ToolRunnerTree } from './tool-runner'; interface CustomGuiError { response: { status: number; data: string; }; } export type GetInitResponse = (ToolRunnerTree & { customGuiError?: CustomGuiError; } & { browserFeatures: Record<string, BrowserFeature[]>; features: Feature[]; }) | null; export declare const start: (args: ServerArgs) => Promise<ServerReadyData>; export {};