bigger delay in test

This commit is contained in:
jusax23 2023-03-18 00:01:03 +01:00
parent d3f83ab775
commit 60b4c819e7
Signed by: jusax23
GPG key ID: 499E2AA870C1CD41

View file

@ -128,12 +128,12 @@ async function wsTester(url) {
const currTest = ws[i];
console.log(`Testing '${currTest[0]}':`);
const handler = [new conn(url)];
await wait(100);
await wait(1000);
let resp = true;
try {
resp = await currTest[1](handler[0], test, async () => {
let h = new conn(url);
await wait(100);
await wait(1000);
handler.push(h);
return h;
});