Skip to content

Commit

Permalink
fix: Flakey session e2e test on Windows (#757)
Browse files Browse the repository at this point in the history
  • Loading branch information
timfish authored Sep 29, 2023
1 parent e2cc0e9 commit bb5d05f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ app.on('ready', () => {
if (process.env.APP_FIRST_RUN) {
setTimeout(() => {
process.exit();
}, 2000);
}, 4000);
} else {
setTimeout(() => {
app.quit();
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/test-apps/sessions/abnormal-exit/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ app.on('ready', () => {
if (process.env.APP_FIRST_RUN) {
setTimeout(() => {
process.exit();
}, 2000);
}, 4000);
} else {
setTimeout(() => {
app.quit();
Expand Down

0 comments on commit bb5d05f

Please sign in to comment.