@@ -209,7 +209,8 @@ async function run() {
209209 appName : buildInfo . productName ,
210210 packageFilepath : path . join ( compassDir , 'dist' , match . filename ) ,
211211 updatable : match . updatable ,
212- // TODO: releaseFilepath once we download the most recent released version too
212+ // TODO(COMPASS-8532): releaseFilepath once we download the most recent
213+ // released version too
213214 installer : match . installer ,
214215 } ;
215216
@@ -223,7 +224,8 @@ async function run() {
223224 console . log ( url ) ;
224225 await downloadFile ( url , pkg . packageFilepath ) ;
225226
226- // TODO: we need to also download releaseFilepath once we have that
227+ // TODO(COMPASS-8532): we need to also download releaseFilepath once we
228+ // have that
227229 }
228230
229231 if ( ! existsSync ( pkg . packageFilepath ) ) {
@@ -232,20 +234,8 @@ async function run() {
232234 ) ;
233235 }
234236
235- // TODO: installing either the packaged file or the released file is better
236- // done as part of tests so we can also clean up and install one after the
237- // other, but that's for a separate PR.
238- /*
239- console.log('installing', pkg.packageFilepath);
240- const installedInfo = await pkg.installer({
241- appName: pkg.appName,
242- filepath: pkg.packageFilepath,
243- });
244- console.log('testing', installedInfo.appPath);
245- await testInstalledApp(pkg, installedInfo);
246- */
247237 await testAutoUpdateFrom ( pkg ) ;
248- // TODO:
238+ // TODO(COMPASS-8535)
249239 //await testAutoUpdateTo(pkg);
250240 } else {
251241 throw new Error ( `${ context . package } not implemented` ) ;
0 commit comments