backend-api/tests/health_test.rs

9 lines
199 B
Rust

#[cfg(test)]
mod tests {
#[tokio::test]
async fn health_returns_ok() {
// TODO: spin up test server
// For now just assert the handler compiles
assert!(true);
}
}