bigger delay in test
This commit is contained in:
parent
d3f83ab775
commit
60b4c819e7
1 changed files with 2 additions and 2 deletions
|
@ -128,12 +128,12 @@ async function wsTester(url) {
|
||||||
const currTest = ws[i];
|
const currTest = ws[i];
|
||||||
console.log(`Testing '${currTest[0]}':`);
|
console.log(`Testing '${currTest[0]}':`);
|
||||||
const handler = [new conn(url)];
|
const handler = [new conn(url)];
|
||||||
await wait(100);
|
await wait(1000);
|
||||||
let resp = true;
|
let resp = true;
|
||||||
try {
|
try {
|
||||||
resp = await currTest[1](handler[0], test, async () => {
|
resp = await currTest[1](handler[0], test, async () => {
|
||||||
let h = new conn(url);
|
let h = new conn(url);
|
||||||
await wait(100);
|
await wait(1000);
|
||||||
handler.push(h);
|
handler.push(h);
|
||||||
return h;
|
return h;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue