Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/tests/tests/wait_for_remote_peer.node.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down Expand Up @@ -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();
Expand Down
6 changes: 4 additions & 2 deletions packages/tests/tests/waku.node.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down Expand Up @@ -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();

Expand Down
Loading