You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
inventory-app/tests/sanity.rs

11 lines
208 B

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(())
}

Powered by TurnKey Linux.