(device: DeviceInfo, count: number)
| 25 | * single main-thread block, risking the 30s watchdog for large count x interval). |
| 26 | */ |
| 27 | export function shouldUseIosPressSequence(device: DeviceInfo, count: number): boolean { |
| 28 | return isApplePlatform(device.platform) && count > 1; |
| 29 | } |
| 30 | |
| 31 | /** |
| 32 | * Wall-clock budget (ms) for one fused `sequence` runner request. The runner executes a whole |
no test coverage detected