@jasbel/wdio-html-nice-reporter
Version:
WebdriverIO report plugin. Create an HTML formatted report. compatible with webdriverio version 9
8 lines (7 loc) • 371 B
TypeScript
import { HtmlReporterOptions, ReportData } from "./types.js";
declare class HtmlGenerator {
private static LOG;
static writeJson(jsonFile: string, stringified: string, reportOptions: HtmlReporterOptions, reportData: ReportData): void;
static htmlOutput(reportOptions: HtmlReporterOptions, reportData: ReportData): void;
}
export default HtmlGenerator;