mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-04 06:43: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({
|
await nwaku.start({
|
||||||
lightpush: true,
|
lightpush: true,
|
||||||
filter: false,
|
filter: false,
|
||||||
relay: false,
|
relay: true,
|
||||||
store: false
|
store: false
|
||||||
});
|
});
|
||||||
const multiAddrWithId = await nwaku.getMultiaddrWithId();
|
const multiAddrWithId = await nwaku.getMultiaddrWithId();
|
||||||
@ -229,7 +229,7 @@ describe("Wait for remote peer", function () {
|
|||||||
await nwaku.start({
|
await nwaku.start({
|
||||||
filter: true,
|
filter: true,
|
||||||
lightpush: true,
|
lightpush: true,
|
||||||
relay: false
|
relay: true
|
||||||
// store: true
|
// store: true
|
||||||
});
|
});
|
||||||
const multiAddrWithId = await nwaku.getMultiaddrWithId();
|
const multiAddrWithId = await nwaku.getMultiaddrWithId();
|
||||||
|
|||||||
@ -57,7 +57,8 @@ describe("Waku Dial [node only]", function () {
|
|||||||
await nwaku.start({
|
await nwaku.start({
|
||||||
filter: true,
|
filter: true,
|
||||||
store: true,
|
store: true,
|
||||||
lightpush: true
|
lightpush: true,
|
||||||
|
relay: true
|
||||||
});
|
});
|
||||||
const multiAddrWithId = await nwaku.getMultiaddrWithId();
|
const multiAddrWithId = await nwaku.getMultiaddrWithId();
|
||||||
|
|
||||||
@ -91,7 +92,8 @@ describe("Waku Dial [node only]", function () {
|
|||||||
await nwaku.start({
|
await nwaku.start({
|
||||||
filter: true,
|
filter: true,
|
||||||
store: true,
|
store: true,
|
||||||
lightpush: true
|
lightpush: true,
|
||||||
|
relay: true
|
||||||
});
|
});
|
||||||
const multiAddrWithId = await nwaku.getMultiaddrWithId();
|
const multiAddrWithId = await nwaku.getMultiaddrWithId();
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user