From 9e0cfeaa2c21fd8ae1b305f09327aa921a7fd13d Mon Sep 17 00:00:00 2001 From: kozabrada123 Date: Mon, 28 Oct 2024 12:40:30 +0100 Subject: [PATCH] remove new test to test wasm --- tests/gateway.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/gateway.rs b/tests/gateway.rs index beca4562..184248c4 100644 --- a/tests/gateway.rs +++ b/tests/gateway.rs @@ -103,10 +103,10 @@ async fn test_gateway_authenticate() { common::teardown(bundle).await } -#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] -#[cfg_attr(not(target_arch = "wasm32"), tokio::test)] +//#[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] +//#[cfg_attr(not(target_arch = "wasm32"), tokio::test)] /// Tests establishing a connection and receiving errors -async fn test_gateway_errors() { +/*async fn test_gateway_errors() { let bundle = common::setup().await; let gateway: GatewayHandle = Gateway::spawn(&bundle.urls.wss, GatewayOptions::default()) @@ -143,7 +143,7 @@ async fn test_gateway_errors() { } common::teardown(bundle).await -} +}*/ #[cfg_attr(target_arch = "wasm32", wasm_bindgen_test::wasm_bindgen_test)] #[cfg_attr(not(target_arch = "wasm32"), tokio::test)]