Skip to content

Commit

Permalink
Increasing timeouts
Browse files Browse the repository at this point in the history
  • Loading branch information
thamara committed Oct 25, 2022
1 parent 08ea941 commit 563c6c7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/main-window.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 563c6c7

Please sign in to comment.