Skip to content

Commit e3473fa

Browse files
authored
chore(e2e): Don't setup auto-update in CI until we add tests for it (#5929)
Don't setup auto-update in CI until we add tests for it
1 parent 4fc1b2b commit e3473fa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/compass/src/main/application.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,11 @@ class CompassApplication {
131131

132132
await this.setupCORSBypass();
133133
void this.setupCompassAuthService();
134-
this.setupAutoUpdate();
134+
// TODO(COMPASS-7618): For now don't setup auto-update in CI because the
135+
// toasts will obscure other things which we don't expect yet.
136+
if (!process.env.CI) {
137+
this.setupAutoUpdate();
138+
}
135139
await setupCSFLELibrary();
136140
setupTheme(this);
137141
this.setupJavaScriptArguments();

0 commit comments

Comments
 (0)