Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions accessibility/plugin/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ const Accessibility = (on, config) => {
console.log(`parameter for accessibility report WCAG_CRITERIA - ` + config.env.WCAG_CRITERIA)
console.log(`parameter for accessibility report BEST_PRACTICE -` + config.env.BEST_PRACTICE)
console.log(`parameter for accessibility report NEEDS_REVIEW -` + config.env.NEEDS_REVIEW)
console.log(`parameter for accessibility report ACCESSIBILITY_REPORT_PATH -` + config.env.ACCESSIBILITY_REPORT_PATH)


return config;
}
Expand Down
4 changes: 2 additions & 2 deletions accessibility/scanner/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const setScanConfig = (win, payload) =>

setTimeout(() => {
reject(new Error('automation-custom-event not received within timeout'));
}, 9000);
}, 45000);
}
startScan();

Expand Down Expand Up @@ -57,7 +57,7 @@ const getScanData = (win, payload) =>

setTimeout(() => {
reject(new Error('automation-custom-event not received within timeout'));
}, 9000);
}, 45000);

}

Expand Down