mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
bump timeout to 90 seconds
This commit is contained in:
parent
4e8aab82ff
commit
c3a31a2d09
1 changed files with 3 additions and 1 deletions
|
|
@ -33,7 +33,9 @@ test.before(async () => {
|
|||
executablePath: pathToBinary
|
||||
});
|
||||
await app.firstWindow();
|
||||
await new Promise((resolve) => setTimeout(resolve, 15000));
|
||||
|
||||
const timeoutSeconds = 90;
|
||||
await new Promise((resolve) => setTimeout(resolve, timeoutSeconds * 1000));
|
||||
});
|
||||
|
||||
test.after(async () => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue