Files
hyperswitch/crates/router/tests/health_check.rs
Sampras Lopes 6f679851df feat(events): Add audit events scaffolding (#3863)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
2024-03-18 06:41:33 +00:00

12 lines
245 B
Rust

mod utils;
use utils::{mk_service, AppClient};
#[actix_web::test]
async fn health_check() {
let server = Box::pin(mk_service()).await;
let client = AppClient::guest();
assert_eq!(client.health(&server).await, "health is good");
}