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) {
101101
102102 console . log ( 'log' , "SET SCAN: Payload to send: for url: " , payloadToSend , url ) ;
103103 try {
104- console . log ( "Current Window Object:" , currentWindow ) ;
105104 let setResult = await setScanConfig ( currentWindow , payloadToSend ) ;
106105 console . log ( 'SET SCAN: response:' , setResult ) ;
107106 } catch ( err ) {
@@ -218,7 +217,8 @@ function oldprocessAccessibilityReport(win){
218217 } ) ;
219218}
220219
221- const overRideCommands = Cypress . env ( "ACCESSIBILITY_OVERIDE_COMMANDS" ) || false ;
220+ const overRideCommands = JSON . parse ( Cypress . env ( "ACCESSIBILITY_OVERIDE_COMMANDS" ) || "false" ) ;
221+
222222if ( overRideCommands ) {
223223 commandsToOverride . forEach ( ( command ) => {
224224 Cypress . Commands . overwrite ( command , ( originalFn , url , options ) => {
You can’t perform that action at this time.
0 commit comments