cucumber-html-report-generator
Version:
Generate beautiful cucumberjs html reports for multiple instances (browsers / devices)
14 lines (12 loc) • 317 B
text/typescript
import type { Feature, Metadata } from './feature';
import type { ReportResults } from './results';
export interface ExtendedReport {
_id: any;
id: any;
features: Feature[];
results: ReportResults;
metadata?: Metadata[];
metadataTitle?: string;
reportTitle?: string;
haveFeaturesMetadata: boolean;
}