Use plain websocket in tests

Thanks to the libp2p upgrade, waku actually tries to listen to a
secure websocket. Using plain websocket for now, testing secure
websocket is tracked with #50.
This commit is contained in:
Franck Royer 2021-06-22 14:11:38 +10:00
parent 01c1c253b4
commit 8cecfc205b
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@ describe('Waku Dial', function () {
const [waku1, waku2] = await Promise.all([ const [waku1, waku2] = await Promise.all([
Waku.create({ Waku.create({
staticNoiseKey: NOISE_KEY_1, staticNoiseKey: NOISE_KEY_1,
libp2p: { addresses: { listen: ['/ip4/0.0.0.0/tcp/0/wss'] } }, libp2p: { addresses: { listen: ['/ip4/0.0.0.0/tcp/0/ws'] } },
}), }),
Waku.create({ staticNoiseKey: NOISE_KEY_2 }), Waku.create({ staticNoiseKey: NOISE_KEY_2 }),
]); ]);

View File

@ -31,7 +31,7 @@ describe('Waku Relay', () => {
Waku.create({ staticNoiseKey: NOISE_KEY_1 }), Waku.create({ staticNoiseKey: NOISE_KEY_1 }),
Waku.create({ Waku.create({
staticNoiseKey: NOISE_KEY_2, staticNoiseKey: NOISE_KEY_2,
libp2p: { addresses: { listen: ['/ip4/0.0.0.0/tcp/0/wss'] } }, libp2p: { addresses: { listen: ['/ip4/0.0.0.0/tcp/0/ws'] } },
}), }),
]); ]);
@ -179,7 +179,7 @@ describe('Waku Relay', () => {
Waku.create({ Waku.create({
pubsubTopic, pubsubTopic,
staticNoiseKey: NOISE_KEY_2, staticNoiseKey: NOISE_KEY_2,
libp2p: { addresses: { listen: ['/ip4/0.0.0.0/tcp/0/wss'] } }, libp2p: { addresses: { listen: ['/ip4/0.0.0.0/tcp/0/ws'] } },
}), }),
Waku.create({ Waku.create({
staticNoiseKey: NOISE_KEY_2, staticNoiseKey: NOISE_KEY_2,