Add smoke tests to electron app

This commit is contained in:
2026-01-06 01:52:34 +01:00
parent 8fe05b5244
commit 947b5ded93
2 changed files with 29 additions and 0 deletions

View File

@@ -88,6 +88,13 @@ function createWindow() {
}
app.whenReady().then(() => {
if (process.env.CI) {
process.on("uncaughtException", (err) => {
console.error("Uncaught exception:", err);
app.exit(1);
});
setTimeout(() => app.quit(), 3000);
}
autoUpdater.checkForUpdatesAndNotify();
let broadcastRect = { width: 0, height: 0 };