mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 18:45:06 +08:00
13 lines
299 B
Rust
13 lines
299 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, 200);
|
|
assert_eq!(response["status"], "ok");
|
|
}
|