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);