Skip to content

Commit

Permalink
Setting an (even more) ignorant timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
thamara committed Oct 25, 2022
1 parent 032dc35 commit 5c0e580
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/main-window.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ describe('Application launch', function()
this.timeout(60000);
this.beforeEach(async function()
{
this.timeout(60000);
this.app = new Application({
path: electronPath,
args: [path.join(__dirname, '..')],
Expand All @@ -33,7 +34,7 @@ describe('Application launch', function()

this.afterEach(async function()
{
this.timeout(30000);
this.timeout(60000);
log(`App is running: ${this.app && this.app.isRunning()}`)
if (this.app && this.app.isRunning())
{
Expand Down

0 comments on commit 5c0e580

Please sign in to comment.