From 60b4c819e73925acce31b09554cfb981ecaf6477 Mon Sep 17 00:00:00 2001 From: jusax23 Date: Sat, 18 Mar 2023 00:01:03 +0100 Subject: [PATCH] bigger delay in test --- tests/ws.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; });