(state: AppState, udid: String)
| 2157 | } |
| 2158 | |
| 2159 | async fn boot_android_device(state: AppState, udid: String) -> Result<(), AppError> { |
| 2160 | run_android_action(state, move |android| { |
| 2161 | android.boot(&udid)?; |
| 2162 | android.wait_until_booted(&udid, Duration::from_secs(240))?; |
| 2163 | Ok(()) |
| 2164 | }) |
| 2165 | .await |
| 2166 | } |
| 2167 | |
| 2168 | async fn boot_ios_device(state: AppState, udid: String) -> Result<(), AppError> { |
| 2169 | forget_lifecycle_session(&state, &udid); |
no test coverage detected