AppFlowy-Cloud/tests/gotrue/health.rs
Nathan.fooo d994b10115
chore: appflowy ai client (#547)
* chore: appflowy ai client

* chore: clippy

* chore: clippy

* chore: fix ci

* chore: disable index search
2024-05-12 09:23:32 +08:00

9 lines
261 B
Rust

use client_api_test::LOCALHOST_GOTRUE;
use gotrue::api::Client;
#[tokio::test]
async fn gotrue_health() {
let http_client = reqwest::Client::new();
let gotrue_client = Client::new(http_client, &LOCALHOST_GOTRUE);
gotrue_client.health().await.unwrap();
}