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.
1 parent f28f09d commit d020bd7Copy full SHA for d020bd7
accessibility/scanner/index.js
@@ -123,7 +123,7 @@ async function processAccessibilityReport(url) {
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"
126
- const filePath = (Cypress.env("ACCESSIBILITY_REPORT_PATH") || 'cypress/results/accessibilityReport_' ) + testId + '.json';
+ const filePath = Cypress.env("ACCESSIBILITY_REPORT_PATH") || ('cypress/results/accessibilityReport_' + testId + '.json');
127
console.log("TestID is",testId);
128
const payloadToSend = {
129
message: 'SEND_ACESSIBILITY_DATA',
0 commit comments