extended auto-tests

This commit is contained in:
Sebastian Hildebrandt 2022-01-17 18:04:22 +01:00
parent c2680b1431
commit b7c59b923f

View File

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