From ee6e7710bc78c751520be00335951d6672c0ae23 Mon Sep 17 00:00:00 2001 From: Sebastian Hildebrandt Date: Sat, 5 Feb 2022 12:13:36 +0100 Subject: [PATCH] Github Action timeout extended --- test/ci.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ci.js b/test/ci.js index 97c8bcb..1358b37 100644 --- a/test/ci.js +++ b/test/ci.js @@ -5,7 +5,7 @@ const testWithTimeout = async (fn) => { (async () => { const timeout = setTimeout(() => { reject('Test Timeout'); - }, 80000); + }, 120000); const result = await fn(); clearTimeout(timeout); return resolve(result);