From 145a1b7812d2c923de0d6c4305d487435d6cb693 Mon Sep 17 00:00:00 2001 From: mahula Date: Wed, 5 Jul 2023 10:50:59 +0200 Subject: [PATCH] add report metadata for e2e test html report --- e2e-tests/create-cucumber-html-report.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/e2e-tests/create-cucumber-html-report.js b/e2e-tests/create-cucumber-html-report.js index 448aa199f..74adceb8f 100644 --- a/e2e-tests/create-cucumber-html-report.js +++ b/e2e-tests/create-cucumber-html-report.js @@ -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" + } + } }); \ No newline at end of file