chore: add missing ensureSubscriptions call (#1628)

Co-authored-by: Sasha <118575614+weboko@users.noreply.github.com>
This commit is contained in:
Florin Barbu 2023-10-02 23:32:18 +03:00 committed by GitHub
parent d02838164f
commit 856d3de265
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 1 deletions

View File

@ -113,7 +113,7 @@ describe("Waku Filter V2: Multiple PubSubtopics", function () {
DefaultPubSubTopic,
await nwaku2.getPeerId()
);
await nwaku.ensureSubscriptions([DefaultPubSubTopic]);
await nwaku2.ensureSubscriptions([DefaultPubSubTopic]);
const messageCollector2 = new MessageCollector();

View File

@ -327,6 +327,7 @@ describe("Waku Filter V2: Subscribe", function () {
DefaultPubSubTopic,
await nwaku2.getPeerId()
);
await nwaku2.ensureSubscriptions([DefaultPubSubTopic]);
// Send a message using the new subscription
const newContentTopic = "/test/2/waku-filter";
const newEncoder = createEncoder({ contentTopic: newContentTopic });

View File

@ -112,6 +112,7 @@ describe("Waku Light Push : Multiple PubSubtopics", function () {
relay: true,
topic: [DefaultPubSubTopic]
});
await nwaku2.ensureSubscriptions([DefaultPubSubTopic]);
await waku.dial(await nwaku2.getMultiaddrWithId());
await waitForRemotePeer(waku, [Protocols.LightPush]);