chore: enable relay when lightpush is used (#2762)

This commit is contained in:
Danish Arora 2025-12-23 19:24:36 -05:00 committed by GitHub
parent f2ad23ad43
commit ab237410f9
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();