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 2c94ef0 + 58c491d commit c25ebf3Copy full SHA for c25ebf3
accessibility/scanner/index.js
@@ -99,14 +99,17 @@ async function processAccessibilityReport(url) {
99
console.log("Logging response before sending to API:", scanData);
100
101
try {
102
+ let testId = Cypress.env("TEST_ID") || ""
103
+ console.log("TestID is",testId);
104
const response = await fetch("http://127.0.0.1:43000/cypress/v1/generateAccessibilityReport", {
105
method: "POST",
106
headers: {
107
"Content-Type": "application/json"
108
},
109
body: JSON.stringify({
110
url: url,
- scanData: scanData
111
+ scanData: scanData,
112
+ testId :testId
113
})
114
});
115
0 commit comments