increase timeout

This commit is contained in:
Gabriel mermelstein 2024-05-13 17:10:45 +02:00
parent 4eb06c64eb
commit 8c6409c762
No known key found for this signature in database
GPG Key ID: 82B8134785FEAE0D
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ describe("Peer Exchange", function () {
// we do this because we want peer-exchange discovery to get initialised before we dial the peer which contains info about the other peer
setTimeout(() => {
void waku.libp2p.dialProtocol(nwaku2Ma, PeerExchangeCodec);
}, 1000);
}, 5000);
return new PeerExchangeDiscovery(waku.libp2p.components, pubsubTopic);
},