Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
SionoiS committed Sep 19, 2023
1 parent ff30fd6 commit 841bdbb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions packages/tests/tests/filter/subscribe.node.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ describe("Waku Filter V2: Subscribe", function () {
[nwaku, waku] = await runNodes(this);
subscription = await waku.filter.createSubscription();
messageCollector = new MessageCollector(TestContentTopic);

// Nwaku subscribe to the default pubsub topic
await nwaku.ensureSubscriptions();
});

this.afterEach(async function () {
Expand Down
3 changes: 3 additions & 0 deletions packages/tests/tests/filter/unsubscribe.node.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ describe("Waku Filter V2: Unsubscribe", function () {
[nwaku, waku] = await runNodes(this);
subscription = await waku.filter.createSubscription();
messageCollector = new MessageCollector(TestContentTopic);

// Nwaku subscribe to the default pubsub topic
await nwaku.ensureSubscriptions();
});

this.afterEach(async function () {
Expand Down

0 comments on commit 841bdbb

Please sign in to comment.