From 0e021878e14bf54ee8812918de9e6d389ace7971 Mon Sep 17 00:00:00 2001 From: Emma Zhong Date: Tue, 20 Aug 2024 22:44:33 -0700 Subject: [PATCH] comment out test to see --- crates/sui-graphql-rpc/tests/e2e_tests.rs | 32 +++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/crates/sui-graphql-rpc/tests/e2e_tests.rs b/crates/sui-graphql-rpc/tests/e2e_tests.rs index e42072d8e28b81..ecfe81d289b5aa 100644 --- a/crates/sui-graphql-rpc/tests/e2e_tests.rs +++ b/crates/sui-graphql-rpc/tests/e2e_tests.rs @@ -890,20 +890,20 @@ mod tests { test_query_complexity_metrics_impl().await; } - #[tokio::test] - #[serial] - async fn test_health_check() { - let _guard = telemetry_subscribers::TelemetryConfig::new() - .with_env() - .init(); - let connection_config = ConnectionConfig::ci_integration_test_cfg(); - let cluster = - sui_graphql_rpc::test_infra::cluster::start_cluster(connection_config, None).await; - - cluster - .wait_for_checkpoint_catchup(0, Duration::from_secs(10)) - .await; - test_health_check_impl().await; - cluster.cleanup_resources().await - } + // #[tokio::test] + // #[serial] + // async fn test_health_check() { + // let _guard = telemetry_subscribers::TelemetryConfig::new() + // .with_env() + // .init(); + // let connection_config = ConnectionConfig::ci_integration_test_cfg(); + // let cluster = + // sui_graphql_rpc::test_infra::cluster::start_cluster(connection_config, None).await; + + // cluster + // .wait_for_checkpoint_catchup(0, Duration::from_secs(10)) + // .await; + // test_health_check_impl().await; + // cluster.cleanup_resources().await + // } }