Skip to content

Commit

Permalink
test: debug failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
mdonnalley committed May 24, 2024
1 parent 95fbb2a commit a10a0b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration/deb.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ describe('publish:deb', () => {

// download the deb
await exec(
`curl -sL https://${developerSalesforceCom}/${basePrefix}/versions/${pjson.version}/${sha}/apt/oclif_${pjson.version}-${sha}_amd64.deb -o ${root}/oclif.deb`,
`wget https://${developerSalesforceCom}/${basePrefix}/versions/${pjson.version}/${sha}/apt/oclif_${pjson.version}-${sha}_amd64.deb`,
)
// install the deb
await exec(`sudo dpkg -i ${root}/oclif.deb`)
await exec(`sudo dpkg -i oclif_${pjson.version}-${sha}_amd64.deb`)
// test the bin
const {stdout: oclif} = await exec('oclif --version')
expect(oclif).to.contain(`oclif/${pjson.version} ${target} node-v${pjson.oclif.update.node.version}`)
Expand Down

0 comments on commit a10a0b1

Please sign in to comment.