updated docs

This commit is contained in:
Sebastian Hildebrandt
2022-03-14 06:43:55 +01:00
parent cbe6e430b4
commit bd704b2907
6 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ const testWithTimeout = async (fn) => {
(async () => {
const timeout = setTimeout(() => {
reject('Test Timeout');
}, 120000);
}, 240000);
const result = await fn();
clearTimeout(timeout);
return resolve(result);