users tty improvement (windows)

This commit is contained in:
Sebastian Hildebrandt
2022-01-21 08:54:57 +01:00
parent 1aed87d72e
commit d760a2ccec
2 changed files with 43 additions and 44 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ const testWithTimeout = async (fn) => {
(async () => {
const timeout = setTimeout(() => {
reject('Test Timeout');
}, 60000);
}, 80000);
const result = await fn();
clearTimeout(timeout);
return resolve(result);