Skip to content

Commit cdf6823

Browse files
committed
AAAAH
1 parent 6933183 commit cdf6823

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

test/integration/install.integration.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ describe('install/uninstall integration tests', () => {
208208
expect(secondResult?.some((r) => r.name === yetAnotherPlugin)).to.be.true
209209

210210
// Install a third plugin by a local tarball. This one is alphabetically after the second one.
211-
const {result: thirdAdd} = await runCommand(`plugins install "file://${pluginLocalTarball}`)
211+
const {stdout: thirdAdd} = await runCommand(`plugins install "file://${pluginLocalTarball}`)
212212
console.log(`third add stdout: ${thirdAdd}`)
213213
const {result: thirdResult, stdout: thirdStdout} = await runCommand<Array<{name: string}>>('plugins')
214214
expect(thirdStdout).to.contain(pluginShortName)
@@ -261,8 +261,10 @@ describe('install/uninstall integration tests', () => {
261261

262262
describe('legacy plugin', () => {
263263
it('should install legacy plugin', async () => {
264-
await runCommand('plugins install @oclif/plugin-legacy')
265-
await runCommand('plugins install @heroku-cli/plugin-ps-exec --silent')
264+
const {stdout: firstAdd} = await runCommand('plugins install @oclif/plugin-legacy')
265+
const {stdout: secondAdd} = await runCommand('plugins install @heroku-cli/plugin-ps-exec --silent')
266+
console.log(`firstStdout: ${firstAdd}`)
267+
console.log(`secondStdout: ${secondAdd}`)
266268
const {result, stdout} = await runCommand<Array<{ name: string }>>('plugins')
267269
console.log(`stdout is ${stdout}`)
268270
expect(stdout).to.contain('@heroku-cli/plugin-ps-exec')

0 commit comments

Comments
 (0)