@@ -184,7 +184,12 @@ export async function dispatchCommand(
184184 doubleTap,
185185 appBundleId : context ?. appBundleId ,
186186 } ,
187- { verbose : context ?. verbose , logPath : context ?. logPath , traceLogPath : context ?. traceLogPath } ,
187+ {
188+ verbose : context ?. verbose ,
189+ logPath : context ?. logPath ,
190+ traceLogPath : context ?. traceLogPath ,
191+ requestId : context ?. requestId ,
192+ } ,
188193 ) ;
189194 return { x, y, count, intervalMs, holdMs, jitterPx, doubleTap, timingMode : 'runner-series' } ;
190195 }
@@ -237,7 +242,12 @@ export async function dispatchCommand(
237242 pattern,
238243 appBundleId : context ?. appBundleId ,
239244 } ,
240- { verbose : context ?. verbose , logPath : context ?. logPath , traceLogPath : context ?. traceLogPath } ,
245+ {
246+ verbose : context ?. verbose ,
247+ logPath : context ?. logPath ,
248+ traceLogPath : context ?. traceLogPath ,
249+ requestId : context ?. requestId ,
250+ } ,
241251 ) ;
242252 return {
243253 x1,
@@ -334,7 +344,12 @@ export async function dispatchCommand(
334344 await runIosRunnerCommand (
335345 device ,
336346 { command : 'pinch' , scale, x, y, appBundleId : context ?. appBundleId } ,
337- { verbose : context ?. verbose , logPath : context ?. logPath , traceLogPath : context ?. traceLogPath } ,
347+ {
348+ verbose : context ?. verbose ,
349+ logPath : context ?. logPath ,
350+ traceLogPath : context ?. traceLogPath ,
351+ requestId : context ?. requestId ,
352+ } ,
338353 ) ;
339354 return { scale, x, y } ;
340355 }
@@ -350,7 +365,12 @@ export async function dispatchCommand(
350365 await runIosRunnerCommand (
351366 device ,
352367 { command : 'back' , appBundleId : context ?. appBundleId } ,
353- { verbose : context ?. verbose , logPath : context ?. logPath , traceLogPath : context ?. traceLogPath } ,
368+ {
369+ verbose : context ?. verbose ,
370+ logPath : context ?. logPath ,
371+ traceLogPath : context ?. traceLogPath ,
372+ requestId : context ?. requestId ,
373+ } ,
354374 ) ;
355375 return { action : 'back' } ;
356376 }
@@ -362,7 +382,12 @@ export async function dispatchCommand(
362382 await runIosRunnerCommand (
363383 device ,
364384 { command : 'home' , appBundleId : context ?. appBundleId } ,
365- { verbose : context ?. verbose , logPath : context ?. logPath , traceLogPath : context ?. traceLogPath } ,
385+ {
386+ verbose : context ?. verbose ,
387+ logPath : context ?. logPath ,
388+ traceLogPath : context ?. traceLogPath ,
389+ requestId : context ?. requestId ,
390+ } ,
366391 ) ;
367392 return { action : 'home' } ;
368393 }
@@ -374,7 +399,12 @@ export async function dispatchCommand(
374399 await runIosRunnerCommand (
375400 device ,
376401 { command : 'appSwitcher' , appBundleId : context ?. appBundleId } ,
377- { verbose : context ?. verbose , logPath : context ?. logPath , traceLogPath : context ?. traceLogPath } ,
402+ {
403+ verbose : context ?. verbose ,
404+ logPath : context ?. logPath ,
405+ traceLogPath : context ?. traceLogPath ,
406+ requestId : context ?. requestId ,
407+ } ,
378408 ) ;
379409 return { action : 'app-switcher' } ;
380410 }
@@ -415,7 +445,12 @@ export async function dispatchCommand(
415445 scope : context ?. snapshotScope ,
416446 raw : context ?. snapshotRaw ,
417447 } ,
418- { verbose : context ?. verbose , logPath : context ?. logPath , traceLogPath : context ?. traceLogPath } ,
448+ {
449+ verbose : context ?. verbose ,
450+ logPath : context ?. logPath ,
451+ traceLogPath : context ?. traceLogPath ,
452+ requestId : context ?. requestId ,
453+ } ,
419454 ) ,
420455 {
421456 backend : 'xctest' ,
0 commit comments