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) • 476 B
TypeScript
import type { CommanderStatic } from '@gemini-testing/commander';
import type { ToolAdapter } from '../adapters/tool';
export interface GuiCliOptions {
autoRun: boolean;
open: unknown;
port: number;
hostname: string;
}
export interface ServerArgs {
paths: string[];
toolAdapter: ToolAdapter;
cli: {
options: GuiCliOptions;
tool: CommanderStatic;
};
}
declare const _default: (args: ServerArgs) => void;
export default _default;