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 bdf54f1 commit f7f79e8Copy full SHA for f7f79e8
accessibility/scanner/index.js
@@ -248,12 +248,11 @@ function oldprocessAccessibilityReport(win){
248
let needsReviewValue = Cypress.env("NEEDS_REVIEW") || true;
249
bestPracticeValue = bestPracticeValue == "true" ? true : false;
250
needsReviewValue = needsReviewValue == "true" ? true : false;
251
- captureScreenshotEnabled = captureScreenshotEnabled == "true" ? true : false;
252
const payloadToSend = {
253
message: 'SET_CONFIG',
254
wcagCriteria: wcagCriteriaValue,
255
bestPractice: bestPracticeValue,
256
- needsReview: needsReviewValue,
+ needsReview: needsReviewValue
257
}
258
259
console.log('log', "payload to send " + payloadToSend);
0 commit comments