(device: DeviceInfo)
| 283 | } |
| 284 | |
| 285 | function isStoppedAndroidAvdPlaceholder(device: DeviceInfo): boolean { |
| 286 | return ( |
| 287 | device.platform === 'android' && |
| 288 | device.kind === 'emulator' && |
| 289 | device.booted === false && |
| 290 | !/^emulator-\d+$/.test(device.id) |
| 291 | ); |
| 292 | } |
| 293 | |
| 294 | export function matchesDeviceSelector( |
| 295 | device: DeviceInfo, |