2026-03-25 18:57:45 -05:00
|
|
|
mod integration_common;
|
|
|
|
|
|
|
|
|
|
use integration_common::{build_client, build_client_with_key};
|
|
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
|
#[ignore]
|
2026-03-25 20:14:24 -05:00
|
|
|
async fn ping_should_succeed_with_api_key() {
|
2026-03-25 18:57:45 -05:00
|
|
|
let client = build_client();
|
|
|
|
|
client.ping().await.unwrap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[tokio::test]
|
|
|
|
|
#[ignore]
|
2026-03-25 20:14:24 -05:00
|
|
|
async fn ping_should_succeed_without_api_key() {
|
|
|
|
|
let client = build_client_with_key("");
|
|
|
|
|
client.ping().await.unwrap();
|
2026-03-25 18:57:45 -05:00
|
|
|
}
|