cucumber-html-report-generator
Version:
Generate beautiful cucumberjs html reports for multiple instances (browsers / devices)
24 lines • 737 B
TypeScript
import type { Metadata } from '../report/feature';
export interface ReportDisplay {
showExecutionTime?: boolean;
navigateToFeatureIfThereIsOnlyOne?: boolean;
openReportInBrowser?: boolean;
customStyle?: string;
overrideStyle?: string;
reportPath?: string;
disableLog?: boolean;
theme?: string;
useCDN?: boolean;
}
export interface ReportGeneration extends ReportDisplay {
reportTitle?: string;
jsonDir: string;
reportMetadata?: Metadata[];
featuresFolder?: string;
saveReportInMongoDb?: boolean;
saveCollectedJSON?: boolean;
saveEnrichedJSON?: boolean;
reportMetadataTitle?: string;
mongooseServerUrl?: string;
}
//# sourceMappingURL=application-properties.d.ts.map