1
0
mirror of https://github.com/meilisearch/MeiliSearch synced 2025-03-13 11:33:02 +01:00
2021-03-01 14:41:55 +01:00

12 lines
258 B
Rust

mod common;
#[actix_rt::test]
async fn test_healthyness() {
let mut server = common::Server::with_uid("movies");
// Check that the server is healthy
let (_response, status_code) = server.get_health().await;
assert_eq!(status_code, 204);
}