File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,6 @@ async function processAccessibilityReport(url) {
101
101
102
102
console . log ( 'log' , "SET SCAN: Payload to send: for url: " , payloadToSend , url ) ;
103
103
try {
104
- console . log ( "Current Window Object:" , currentWindow ) ;
105
104
let setResult = await setScanConfig ( currentWindow , payloadToSend ) ;
106
105
console . log ( 'SET SCAN: response:' , setResult ) ;
107
106
} catch ( err ) {
@@ -218,7 +217,8 @@ function oldprocessAccessibilityReport(win){
218
217
} ) ;
219
218
}
220
219
221
- const overRideCommands = Cypress . env ( "ACCESSIBILITY_OVERIDE_COMMANDS" ) || false ;
220
+ const overRideCommands = JSON . parse ( Cypress . env ( "ACCESSIBILITY_OVERIDE_COMMANDS" ) || "false" ) ;
221
+
222
222
if ( overRideCommands ) {
223
223
commandsToOverride . forEach ( ( command ) => {
224
224
Cypress . Commands . overwrite ( command , ( originalFn , url , options ) => {
You can’t perform that action at this time.
0 commit comments