bump timeout to 90 seconds

This commit is contained in:
Philip Peterson 2024-12-08 05:44:39 -09:00
parent 4e8aab82ff
commit c3a31a2d09
No known key found for this signature in database
GPG key ID: 354311183FC6519B

View file

@ -33,7 +33,9 @@ test.before(async () => {
executablePath: pathToBinary executablePath: pathToBinary
}); });
await app.firstWindow(); await app.firstWindow();
await new Promise((resolve) => setTimeout(resolve, 15000));
const timeoutSeconds = 90;
await new Promise((resolve) => setTimeout(resolve, timeoutSeconds * 1000));
}); });
test.after(async () => { test.after(async () => {