We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e401d67 + 34c336a commit 9cc5d1fCopy full SHA for 9cc5d1f
accessibility/scanner/index.js
@@ -121,8 +121,8 @@ async function processAccessibilityReport(url) {
121
122
try {
123
124
- let testId = Cypress.env("TEST_ID") || "dummy1234"
125
- let reportAPI = Cypress.env("GENERATE_REPORT_API") || "http://localhost:43000/api/v1.0/cypress/generateAccessibilityReport"
+ const testId = Cypress.env("TEST_ID") || "dummy1234"
+ const reportAPI = Cypress.env("GENERATE_REPORT_API") || "http://localhost:43000/api/v1.0/cypress/generateAccessibilityReport"
126
const filePath = Cypress.env("ACCESSIBILITY_REPORT_PATH") || ('cypress/results/accessibilityReport_' + testId + '.json');
127
console.log("TestID is",testId);
128
const payloadToSend = {
0 commit comments