UNPKG

html-reporter

Version:

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

8 lines (7 loc) 268 B
import { ToolAdapter } from '../adapters/tool'; interface MergeOptions { destPath: string; headers: string[]; } export declare const mergeReports: (toolAdapter: ToolAdapter, srcPaths: string[], { destPath, headers }: MergeOptions) => Promise<void>; export {};