diff --git a/tests/integration_test.rs b/tests/integration_test.rs index 6fe1154..fcf2cf6 100644 --- a/tests/integration_test.rs +++ b/tests/integration_test.rs @@ -54,11 +54,11 @@ async fn tcp() -> Result<()> { } }); - // test("tests/for_tcp/tcp_transport.toml", Type::Tcp).await?; + test("tests/for_tcp/tcp_transport.toml", Type::Tcp).await?; // FIXME: Self-signed certificate on Mac requires mannual interference. Disable CI for now #[cfg(not(target_os = "macos"))] - // test("tests/for_tcp/tls_transport.toml", Type::Tcp).await?; - // test("tests/for_tcp/noise_transport.toml", Type::Tcp).await?; + test("tests/for_tcp/tls_transport.toml", Type::Tcp).await?; + test("tests/for_tcp/noise_transport.toml", Type::Tcp).await?; test("tests/for_tcp/quic_transport.toml", Type::Tcp).await?; Ok(())