Skip to content

Commit

Permalink
Merge branch 'feat/send-sessions-on-create' of https://github.com/tim…
Browse files Browse the repository at this point in the history
…fish/sentry-electron into feat/send-sessions-on-create
  • Loading branch information
timfish committed Aug 8, 2023
2 parents 319691b + 2d899e7 commit 3d9248b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ app.on('ready', () => {
if (process.env.APP_FIRST_RUN) {
setTimeout(() => {
process.exit();
}, 1000);
}, 2000);
} else {
setTimeout(() => {
app.quit();
}, 2000);
}, 4000);
}
4 changes: 2 additions & 2 deletions test/e2e/test-apps/sessions/abnormal-exit/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ app.on('ready', () => {
if (process.env.APP_FIRST_RUN) {
setTimeout(() => {
process.exit();
}, 1000);
}, 2000);
} else {
setTimeout(() => {
app.quit();
}, 2000);
}, 4000);
}
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ setTimeout(() => {
} else {
app.quit();
}
}, 2000);
}, 4000);
4 changes: 2 additions & 2 deletions test/e2e/test-apps/sessions/native-crash-main/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ app.on('ready', () => {
if (process.env.APP_FIRST_RUN) {
setTimeout(() => {
process.crash();
}, 1000);
}, 2000);
} else {
setTimeout(() => {
app.quit();
}, 2000);
}, 4000);
}

0 comments on commit 3d9248b

Please sign in to comment.