add report metadata for e2e test html report

This commit is contained in:
mahula 2023-07-05 10:50:59 +02:00
parent 672b2e5fb8
commit 145a1b7812

View File

@ -1,5 +1,15 @@
const report = require("multiple-cucumber-html-reporter");
report.generate({
jsonDir: "cypress/reports/json_logs",
reportPath: "./cypress/reports/cucumber_html_report"
reportPath: "./cypress/reports/cucumber_html_report",
metadata: {
app: {
name: "Gradido webapp"
},
device: "Github worker",
plattform: {
name: "ubuntu",
version: "latest"
}
}
});