remove try catch no longer needed after 1790 got fixed (#2026)

This commit is contained in:
fbarbu15 2024-05-30 18:59:16 +03:00 committed by GitHub
parent 2311a595b2
commit c5302fd0c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -309,9 +309,6 @@ const runTests = (strictCheckNodes: boolean): void => {
});
}
// Open issue here: https://github.com/waku-org/js-waku/issues/1790
// That's why we use the try catch block
try {
// Verify that each message was received on the corresponding topic.
expect(
await serviceNodes.messageCollector.waitForMessages(topicCount)
@ -323,11 +320,6 @@ const runTests = (strictCheckNodes: boolean): void => {
expectedPubsubTopic: TestPubsubTopic
});
});
} catch (error) {
console.warn(
"This test still fails because of https://github.com/waku-org/js-waku/issues/1790"
);
}
});
it("Error when try to subscribe to more than 101 topics (new limit)", async function () {