(avdName: string)
| 341 | } |
| 342 | |
| 343 | function inferAndroidAvdTarget(avdName: string): 'mobile' | 'tv' { |
| 344 | return /\b(tv|television)\b/i.test(normalizeAndroidName(avdName)) ? 'tv' : 'mobile'; |
| 345 | } |
| 346 | |
| 347 | function findAndroidEmulatorByAvdName( |
| 348 | devices: DeviceInfo[], |
no test coverage detected