Skip to content

Commit f7f79e8

Browse files
Added capture screenshot from CLI
1 parent bdf54f1 commit f7f79e8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

accessibility/scanner/index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,12 +248,11 @@ function oldprocessAccessibilityReport(win){
248248
let needsReviewValue = Cypress.env("NEEDS_REVIEW") || true;
249249
bestPracticeValue = bestPracticeValue == "true" ? true : false;
250250
needsReviewValue = needsReviewValue == "true" ? true : false;
251-
captureScreenshotEnabled = captureScreenshotEnabled == "true" ? true : false;
252251
const payloadToSend = {
253252
message: 'SET_CONFIG',
254253
wcagCriteria: wcagCriteriaValue,
255254
bestPractice: bestPracticeValue,
256-
needsReview: needsReviewValue,
255+
needsReview: needsReviewValue
257256
}
258257

259258
console.log('log', "payload to send " + payloadToSend);

0 commit comments

Comments
 (0)