Ocelot-Social/cypress/create-cucumber-html-report.js
mahula 2cb19e183a e2e: add video recording
- activate video recording
- add recorded video to failure artefact upload
2025-05-09 07:09:31 +02:00

12 lines
332 B
JavaScript

const report = require("multiple-cucumber-html-reporter");
const reportTitle = "Ocelot webapp end-to-end test report"
report.generate({
jsonDir: "reports/json_logs",
reportPath: "./reports/failure/cucumber_html_report",
pageTitle: reportTitle,
reportName: reportTitle,
pageFooter: "<div></div>",
hideMetadata: true
});