(
state: &AppState,
udid: &str,
)
| 4292 | } |
| 4293 | |
| 4294 | async fn foreground_app_for_simulator( |
| 4295 | state: &AppState, |
| 4296 | udid: &str, |
| 4297 | ) -> Result<Option<devtools::ForegroundApp>, String> { |
| 4298 | foreground_app_for_simulator_with_cache_ttl(state, udid, FOREGROUND_APP_CACHE_TTL).await |
| 4299 | } |
| 4300 | |
| 4301 | async fn foreground_app_for_simulator_with_cache_ttl( |
| 4302 | state: &AppState, |
no test coverage detected