mod shared; #[tokio::test] async fn client_registers_and_deregisters_to_pub_servers_successfully() { shared::client_registers_and_deregisters_to_pub_servers_successfully().await; } #[tokio::test] async fn client_polls_pub_servers_successfully() { shared::client_polls_pub_servers_successfully().await; } #[tokio::test] async fn client_receives_http_logs_from_pub_servers() { shared::client_receives_http_logs_from_pub_servers().await; } #[tokio::test] async fn client_receives_http_logs_from_proxied_pub_servers() { shared::client_receives_http_logs_from_proxied_pub_servers().await; } #[tokio::test] #[ignore] // When run in Github Actions, DNS interaction tests intermittently fail async fn client_receives_dns_logs_from_pub_servers() { shared::client_receives_dns_logs_from_pub_servers().await; } #[tokio::test] async fn client_registers_and_deregisters_to_local_server_successfully_with_auth() { shared::client_registers_and_deregisters_to_local_server_successfully_with_auth().await; } #[tokio::test] async fn client_polls_local_server_successfully() { shared::client_polls_local_server_successfully().await; } #[tokio::test] async fn client_receives_http_logs_from_local_server() { shared::client_receives_http_logs_from_local_server().await; }