mirror of
https://github.com/IT4Change/boilerplate-e2e-cypress-cucumber.git
synced 2025-12-12 20:55:48 +00:00
14 lines
404 B
TypeScript
14 lines
404 B
TypeScript
import report from 'multiple-cucumber-html-reporter'
|
|
|
|
const reportTitle = 'End-to-End Test Report'
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-call, @typescript-eslint/no-unsafe-member-access
|
|
report.generate({
|
|
jsonDir: './reports/json/',
|
|
reportPath: './reports/e2e_html_report',
|
|
pageTitle: reportTitle,
|
|
reportName: reportTitle,
|
|
pageFooter: '<div></div>',
|
|
hideMetadata: true,
|
|
})
|