Skip to content

Commit d020bd7

Browse files
correct file path
1 parent f28f09d commit d020bd7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

accessibility/scanner/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ async function processAccessibilityReport(url) {
123123

124124
let testId = Cypress.env("TEST_ID") || "dummy1234"
125125
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';
126+
const filePath = Cypress.env("ACCESSIBILITY_REPORT_PATH") || ('cypress/results/accessibilityReport_' + testId + '.json');
127127
console.log("TestID is",testId);
128128
const payloadToSend = {
129129
message: 'SEND_ACESSIBILITY_DATA',

0 commit comments

Comments
 (0)