From 85952b9b6f09d2ef11f83dfe1d816fc12beeccdf Mon Sep 17 00:00:00 2001 From: Blake Griffith Date: Mon, 28 Oct 2024 12:24:43 -0400 Subject: [PATCH] ignore ncrs_simple_client_writer test it was causing hangs --- tests/js_interop.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/js_interop.rs b/tests/js_interop.rs index 58c4a72..d703734 100644 --- a/tests/js_interop.rs +++ b/tests/js_interop.rs @@ -110,7 +110,8 @@ async fn js_interop_rcrs_simple_server_writer() -> Result<()> { } #[test(async_test)] -#[cfg_attr(not(feature = "js_interop_tests"), ignore)] +//#[cfg_attr(not(feature = "js_interop_tests"), ignore)] +#[ignore] // FIXME this tests hangs sporadically async fn js_interop_rcrs_simple_client_writer() -> Result<()> { js_interop_rcrs_simple(false, 8108).await?; Ok(())