From b7c59b923ffea4ecc79b475e8ae8e6ed664a82bf Mon Sep 17 00:00:00 2001 From: Sebastian Hildebrandt Date: Mon, 17 Jan 2022 18:04:22 +0100 Subject: [PATCH] extended auto-tests --- test/ci.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ci.js b/test/ci.js index c85a319..05e597e 100644 --- a/test/ci.js +++ b/test/ci.js @@ -5,7 +5,7 @@ const testWithTimeout = async (fn) => { (async () => { const timeout = setTimeout(() => { reject('Test Timeout'); - }, 20000); + }, 40000); const result = await fn(); clearTimeout(timeout); return resolve(result);