From 563c6c72c3f7666c6326afae193b2a015686b2c6 Mon Sep 17 00:00:00 2001 From: Thamara Andrade Date: Mon, 24 Oct 2022 23:04:46 -0300 Subject: [PATCH] Increasing timeouts --- tests/main-window.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/main-window.js b/tests/main-window.js index 4fffd4bac..43911d2a0 100644 --- a/tests/main-window.js +++ b/tests/main-window.js @@ -17,14 +17,14 @@ function log(msg) describe('Application launch', function() { - this.timeout(10000); + this.timeout(30000); beforeEach(async function() { this.app = new Application({ path: electronPath, args: [path.join(__dirname, '..')], - waitTimeout: 10000, - quitTimeout: 200 + waitTimeout: 30000, + quitTimeout: 1000 }); log('Start app...') await this.app.start();