Merge branch 'master' into fix/peer-cache-test

This commit is contained in:
Arseniy Klempner 2025-12-23 16:24:47 -08:00 committed by GitHub
commit 46c4f24e78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 4 deletions

View File

@ -170,7 +170,7 @@ describe("Wait for remote peer", function () {
await nwaku.start({
lightpush: true,
filter: false,
relay: false,
relay: true,
store: false
});
const multiAddrWithId = await nwaku.getMultiaddrWithId();
@ -229,7 +229,7 @@ describe("Wait for remote peer", function () {
await nwaku.start({
filter: true,
lightpush: true,
relay: false
relay: true
// store: true
});
const multiAddrWithId = await nwaku.getMultiaddrWithId();

View File

@ -57,7 +57,8 @@ describe("Waku Dial [node only]", function () {
await nwaku.start({
filter: true,
store: true,
lightpush: true
lightpush: true,
relay: true
});
const multiAddrWithId = await nwaku.getMultiaddrWithId();
@ -91,7 +92,8 @@ describe("Waku Dial [node only]", function () {
await nwaku.start({
filter: true,
store: true,
lightpush: true
lightpush: true,
relay: true
});
const multiAddrWithId = await nwaku.getMultiaddrWithId();