(method: &str)
| 3806 | } |
| 3807 | |
| 3808 | fn inspector_request_timeout(method: &str) -> Duration { |
| 3809 | if method == "View.getHierarchy" { |
| 3810 | CONNECTED_INSPECTOR_HIERARCHY_TIMEOUT |
| 3811 | } else { |
| 3812 | Duration::from_secs(10) |
| 3813 | } |
| 3814 | } |
| 3815 | |
| 3816 | async fn simulator_logs( |
| 3817 | State(state): State<AppState>, |
no outgoing calls
no test coverage detected