merge test reports

This commit is contained in:
Martin McKeaveney 2022-05-20 01:04:52 +01:00
parent 1885916704
commit 43124ca538
1 changed files with 28 additions and 24 deletions

View File

@ -1,8 +1,8 @@
#!/usr/bin/env node #!/usr/bin/env node
const fetch = require("node-fetch") const fetch = require("node-fetch")
const fs = require("fs")
const path = require("path") const path = require("path")
const { merge } = require("mochawesome-merge")
const WEBHOOK_URL = process.env.CYPRESS_WEBHOOK_URL const WEBHOOK_URL = process.env.CYPRESS_WEBHOOK_URL
const OUTCOME = process.env.CYPRESS_OUTCOME const OUTCOME = process.env.CYPRESS_OUTCOME
@ -10,6 +10,7 @@ const DASHBOARD_URL = process.env.CYPRESS_DASHBOARD_URL
const GIT_SHA = process.env.GITHUB_SHA const GIT_SHA = process.env.GITHUB_SHA
const GITHUB_ACTIONS_RUN_URL = process.env.GITHUB_ACTIONS_RUN_URL const GITHUB_ACTIONS_RUN_URL = process.env.GITHUB_ACTIONS_RUN_URL
async function generateReport() {
// read the report file // read the report file
const REPORT_PATH = path.resolve( const REPORT_PATH = path.resolve(
__dirname, __dirname,
@ -17,10 +18,13 @@ const REPORT_PATH = path.resolve(
"cypress", "cypress",
"reports", "reports",
"mocha", "mocha",
"mochawesome.json" "*.json"
) )
const testReport = JSON.parse(fs.readFileSync(REPORT_PATH, "utf-8")) const testReport = await merge({ files: [REPORT_PATH] })
return testReport
}
async function discordCypressResultsNotification(report) {
const { const {
suites, suites,
tests, tests,
@ -30,9 +34,8 @@ const {
duration, duration,
passPercent, passPercent,
skipped, skipped,
} = testReport.stats } = report.stats
async function discordCypressResultsNotification() {
const options = { const options = {
method: "POST", method: "POST",
headers: { headers: {
@ -63,7 +66,7 @@ async function discordCypressResultsNotification() {
fields: [ fields: [
{ {
name: "Commit", name: "Commit",
value: GIT_SHA, value: GIT_SHA || "None Supplied",
}, },
{ {
name: "Cypress Dashboard URL", name: "Cypress Dashboard URL",
@ -121,7 +124,8 @@ async function discordCypressResultsNotification() {
} }
async function run() { async function run() {
await discordCypressResultsNotification() const report = await generateReport()
await discordCypressResultsNotification(report)
} }
run() run()