diff --git a/tests/ws.js b/tests/ws.js index 1ce1683..8dffe19 100644 --- a/tests/ws.js +++ b/tests/ws.js @@ -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; });