@@ -183,7 +183,7 @@ test('parseXctracePhysicalAppleDevices parses only physical devices from the Dev
183183 kind : 'device' ,
184184 target : 'mobile' ,
185185 appleOs : 'ios' ,
186- backend : 'xctest' ,
186+ iosPhysicalDeviceBackend : 'xctest' ,
187187 booted : true ,
188188 } ,
189189 {
@@ -193,7 +193,7 @@ test('parseXctracePhysicalAppleDevices parses only physical devices from the Dev
193193 kind : 'device' ,
194194 target : 'tv' ,
195195 appleOs : 'tvos' ,
196- backend : 'xctest' ,
196+ iosPhysicalDeviceBackend : 'xctest' ,
197197 booted : true ,
198198 } ,
199199 ] ) ;
@@ -211,7 +211,7 @@ test('parseXctracePhysicalAppleDevices tags physical iPads as iPadOS', () => {
211211 kind : 'device' ,
212212 target : 'mobile' ,
213213 appleOs : 'ipados' ,
214- backend : 'xctest' ,
214+ iosPhysicalDeviceBackend : 'xctest' ,
215215 booted : true ,
216216 } ,
217217 ] ) ;
@@ -229,7 +229,7 @@ test('parseXctracePhysicalAppleDevices tags Apple Vision devices as visionOS', (
229229 kind : 'device' ,
230230 target : 'mobile' ,
231231 appleOs : 'visionos' ,
232- backend : 'xctest' ,
232+ iosPhysicalDeviceBackend : 'xctest' ,
233233 booted : true ,
234234 } ,
235235 ] ) ;
@@ -253,7 +253,7 @@ test('parseXctracePhysicalAppleDevices parses the parenthesized physical device
253253 kind : 'device' ,
254254 target : 'mobile' ,
255255 appleOs : 'ios' ,
256- backend : 'xctest' ,
256+ iosPhysicalDeviceBackend : 'xctest' ,
257257 booted : true ,
258258 } ,
259259 {
@@ -263,7 +263,7 @@ test('parseXctracePhysicalAppleDevices parses the parenthesized physical device
263263 kind : 'device' ,
264264 target : 'mobile' ,
265265 appleOs : 'ipados' ,
266- backend : 'xctest' ,
266+ iosPhysicalDeviceBackend : 'xctest' ,
267267 booted : true ,
268268 } ,
269269 {
@@ -273,7 +273,7 @@ test('parseXctracePhysicalAppleDevices parses the parenthesized physical device
273273 kind : 'device' ,
274274 target : 'tv' ,
275275 appleOs : 'tvos' ,
276- backend : 'xctest' ,
276+ iosPhysicalDeviceBackend : 'xctest' ,
277277 booted : true ,
278278 } ,
279279 ] ) ;
@@ -292,7 +292,7 @@ test('parseXctracePhysicalAppleDevices preserves parentheses in bracket-format n
292292 kind : 'device' ,
293293 target : 'mobile' ,
294294 appleOs : 'ios' ,
295- backend : 'xctest' ,
295+ iosPhysicalDeviceBackend : 'xctest' ,
296296 booted : true ,
297297 } ,
298298 {
@@ -302,7 +302,7 @@ test('parseXctracePhysicalAppleDevices preserves parentheses in bracket-format n
302302 kind : 'device' ,
303303 target : 'mobile' ,
304304 appleOs : 'ios' ,
305- backend : 'xctest' ,
305+ iosPhysicalDeviceBackend : 'xctest' ,
306306 booted : true ,
307307 } ,
308308 ] ) ;
@@ -611,7 +611,7 @@ test('listAppleDevices falls back to xctrace parenthesized devices when devicect
611611 assert . equal ( physicalDevices . length , 1 ) ;
612612 assert . equal ( physicalDevices [ 0 ] ?. id , '00008020-001C2D2234567890' ) ;
613613 assert . equal ( physicalDevices [ 0 ] ?. name , 'iPhone 8 Plus' ) ;
614- assert . equal ( physicalDevices [ 0 ] ?. backend , 'xctest' ) ;
614+ assert . equal ( physicalDevices [ 0 ] ?. iosPhysicalDeviceBackend , 'xctest' ) ;
615615} ) ;
616616
617617test ( 'listAppleDevices keeps physical discovery disabled for simulator-set scoped runs' , async ( ) => {
0 commit comments