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 4fc1b2b commit e3473faCopy full SHA for e3473fa
packages/compass/src/main/application.ts
@@ -131,7 +131,11 @@ class CompassApplication {
131
132
await this.setupCORSBypass();
133
void this.setupCompassAuthService();
134
- this.setupAutoUpdate();
+ // 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
+ }
139
await setupCSFLELibrary();
140
setupTheme(this);
141
this.setupJavaScriptArguments();
0 commit comments