Github Action timeout extended

This commit is contained in:
Sebastian Hildebrandt 2022-02-05 12:13:36 +01:00
parent 022c2fb9b4
commit ee6e7710bc

View File

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