We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c49f9f2 commit 5809bf9Copy full SHA for 5809bf9
1 file changed
app/src/main/index.ts
@@ -241,7 +241,11 @@ app.whenReady().then(() => {
241
if (isE2EMode) log.info('[e2e] window created');
242
243
mainWindow.once('ready-to-show', () => {
244
- startUpdateCheck();
+ // Skip update check in E2E mode — on Linux, autoUpdater.checkForUpdates()
245
+ // initialises AppImageUpdater which accesses D-Bus and hangs in CI.
246
+ if (!isE2EMode) {
247
+ startUpdateCheck();
248
+ }
249
// Flush any paths that arrived before the window was ready.
250
for (const p of pendingOpenPaths) {
251
mainWindow?.webContents.send(IPC.EVENT_OPEN_WORKSPACE, p);
0 commit comments