diff --git a/packages/tests/tests/waku.node.spec.ts b/packages/tests/tests/waku.node.spec.ts index 72bb3d8880..608b432bc9 100644 --- a/packages/tests/tests/waku.node.spec.ts +++ b/packages/tests/tests/waku.node.spec.ts @@ -91,13 +91,9 @@ describe("Waku Dial [node only]", function () { await waku.start(); await waku.dial(multiAddrWithId); await nwaku.stop(); - try { - await waku.lightPush?.send(TestEncoder, { - payload: utf8ToBytes("hello world") - }); - } catch (e) { - // We are not checking this exception - } + await waku.lightPush?.send(TestEncoder, { + payload: utf8ToBytes("hello world") + }); }); });