@@ -201,7 +201,6 @@ describe('install/uninstall integration tests', () => {
201201 // Install a second plugin by a local tarball. This one is alphabetically after the first one.
202202 await runCommand ( `plugins install "file://${ yetAnotherLocalPluginTarball } "` )
203203 const { result : secondResult , stdout : secondStdout } = await runCommand < Array < { name : string } > > ( 'plugins' )
204- console . log ( `stdout: ${ secondStdout } ` )
205204 expect ( secondStdout ) . to . contain ( yetAnotherPluginShortName )
206205 expect ( secondResult ?. some ( ( r ) => r . name === otherPlugin ) ) . to . be . true
207206 expect ( secondResult ?. some ( ( r ) => r . name === yetAnotherPlugin ) ) . to . be . true
@@ -257,11 +256,13 @@ describe('install/uninstall integration tests', () => {
257256 } )
258257 } )
259258
260- describe ( 'legacy plugin' , ( ) => {
259+ describe . only ( 'legacy plugin' , ( ) => {
261260 it ( 'should install legacy plugin' , async ( ) => {
262261 await runCommand ( 'plugins install @oclif/plugin-legacy' )
263262 await runCommand ( 'plugins install @heroku-cli/plugin-ps-exec --silent' )
264263 const { result, stdout} = await runCommand < Array < { name : string } > > ( 'plugins' )
264+ console . log ( `result is ${ JSON . stringify ( result , null , 2 ) } ` )
265+ console . log ( `stdout is ${ stdout } ` )
265266 expect ( stdout ) . to . contain ( '@heroku-cli/plugin-ps-exec' )
266267 expect ( result ?. some ( ( r ) => r . name === '@heroku-cli/plugin-ps-exec' ) ) . to . be . true
267268 } )
0 commit comments