use anyhow::Result; #[tokio::test] async fn sanity_check() -> Result<()> { let client = httpc_test::new_client("http://localhost:4206")?; client.do_get("/fail").await?.print().await?; Ok(()) }