8080 assert . equal ( parsed . actions [ 3 ] ?. flags . doubleTap , true ) ;
8181 assert . equal ( parsed . actions [ 3 ] ?. flags . intervalMs , 150 ) ;
8282 assert . equal ( parsed . actions [ 4 ] ?. flags . holdMs , 3000 ) ;
83- assert . equal ( parsed . actions [ 1 ] ?. flags . maestro ?. allowNonHittableSelectorTap , true ) ;
84- assert . equal ( parsed . actions [ 6 ] ?. flags ?. maestro ?. allowNonHittableSelectorTap , undefined ) ;
83+ assert . equal ( parsed . actions [ 1 ] ?. flags . maestro ?. allowNonHittableCoordinateFallback , true ) ;
84+ assert . equal ( parsed . actions [ 6 ] ?. flags ?. maestro ?. allowNonHittableCoordinateFallback , undefined ) ;
8585} ) ;
8686
8787test ( 'parseMaestroReplayFlow maps iOS openLink through the app id when available' , ( ) => {
@@ -200,7 +200,7 @@ test('parseMaestroReplayFlow marks tapOn before inputText for snapshot tap focus
200200 [ 'type' , [ 'Muted Users' ] ] ,
201201 ] ,
202202 ) ;
203- assert . equal ( parsed . actions [ 0 ] ?. flags ?. maestro ?. allowNonHittableSelectorTap , undefined ) ;
203+ assert . equal ( parsed . actions [ 0 ] ?. flags ?. maestro ?. allowNonHittableCoordinateFallback , undefined ) ;
204204} ) ;
205205
206206test ( 'parseMaestroReplayFlow coalesces tapOn inputText while preserving pressKey Enter submit' , ( ) => {
@@ -221,7 +221,7 @@ test('parseMaestroReplayFlow coalesces tapOn inputText while preserving pressKey
221221 ] ,
222222 ) ;
223223 assert . deepEqual ( parsed . actionLines , [ 3 , 3 , 6 ] ) ;
224- assert . equal ( parsed . actions [ 1 ] ?. flags ?. maestro ?. allowNonHittableSelectorTap , true ) ;
224+ assert . equal ( parsed . actions [ 1 ] ?. flags ?. maestro ?. allowNonHittableCoordinateFallback , true ) ;
225225} ) ;
226226
227227test ( 'parseMaestroReplayFlow rejects relative runScript paths without source path' , ( ) => {
@@ -430,7 +430,7 @@ test('parseMaestroReplayFlow keeps visible-gated runFlow commands for runtime ev
430430 {
431431 command : '__maestroTapOn' ,
432432 positionals : [ 'label="Continue" || text="Continue" || id="Continue"' ] ,
433- flags : { maestro : { allowNonHittableSelectorTap : true } } ,
433+ flags : { maestro : { allowNonHittableCoordinateFallback : true } } ,
434434 } ,
435435 ] ) ;
436436} ) ;
@@ -454,7 +454,7 @@ test('parseMaestroReplayFlow accepts launchApp reset options', () => {
454454 'open' ,
455455 [ 'com.callstack.agentdevicelab' ] ,
456456 {
457- maestro : { clearState : true } ,
457+ clearAppState : true ,
458458 launchArgs : [ '-EXDevMenuIsOnboardingFinished' , 'true' , '-Example' , 'ignored' ] ,
459459 } ,
460460 ] ,
0 commit comments