create workspace with meilisearch-error

This commit is contained in:
mpostma
2021-02-28 16:41:47 +01:00
parent 79708aeb67
commit a9a9ed6318
96 changed files with 12737 additions and 265 deletions

View File

@ -0,0 +1,11 @@
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);
}