mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
chore: enable relay when lightpush is used (#2762)
This commit is contained in:
parent
f2ad23ad43
commit
ab237410f9
@ -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();
|
||||
|
||||
@ -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();
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user