AppFlowy-Cloud/tests/gotrue/settings.rs

13 lines
274 B
Rust

use gotrue::api::Client;
#[tokio::test]
async fn gotrue_settings() {
let http_client = reqwest::Client::new();
let gotrue_client = Client::new(
http_client,
"http://localhost:9998",
"http://localhost:9998",
);
gotrue_client.settings().await.unwrap();
}