From c3a31a2d0969f05f1fab35c6a8b51a4dbca0c001 Mon Sep 17 00:00:00 2001 From: Philip Peterson Date: Sun, 8 Dec 2024 05:44:39 -0900 Subject: [PATCH] bump timeout to 90 seconds --- test/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/index.ts b/test/index.ts index 69792e87..b68801e4 100644 --- a/test/index.ts +++ b/test/index.ts @@ -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 () => {