1 2 3 4 5 6 7 8 9 10 11
#[cfg(test)] mod tests { use crate::handlers::webstores::get_webstore; #[tokio::test] async fn try_get_webstore() -> Result<(), String> { get_webstore().await.expect("Could not get webstore"); return Ok(()); } }