diff --git a/tests/e2e_test.rs b/tests/e2e_test.rs index 7cf3fe4..765766f 100644 --- a/tests/e2e_test.rs +++ b/tests/e2e_test.rs @@ -26,6 +26,7 @@ use std::str::FromStr; use std::time::Duration; #[tokio::test] +#[ignore] /// This test does the full round trip lifecycle of a premint /// 1. Premint is broadcasted to mintpool /// 2. Premint is fetched from DB (similating a client fetching from API) diff --git a/tests/p2p_test.rs b/tests/p2p_test.rs index 0cbcf38..23f5759 100644 --- a/tests/p2p_test.rs +++ b/tests/p2p_test.rs @@ -15,6 +15,7 @@ async fn test_connecting_to_other_nodes() { let nodes = mintpool_build::make_nodes(2000, num_nodes, 1000).await; mintpool_build::connect_all_to_first(nodes.clone()).await; + tokio::time::sleep(time::Duration::from_secs(1)).await; let (first, nodes) = mintpool_build::split_first_rest(nodes).await;