Skip to content
This repository has been archived by the owner on Apr 21, 2022. It is now read-only.

Commit

Permalink
fix: lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Sep 14, 2018
1 parent 8c8d64f commit 6650cc1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/publist.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ describe('publish', () => {
const receivedSha = await qq.hash('sha256', `oclif-dev${ext}`)
expect(receivedSha).to.equal(expectedSha)
if (xz) {
await qq.x('tar xJf oclif-dev.tar.xz')
} else {
await qq.x('tar xzf oclif-dev.tar.gz')
}
await qq.x('tar xJf oclif-dev.tar.xz')
} else {
await qq.x('tar xzf oclif-dev.tar.gz')
}
const stdout = await qq.x.stdout('./oclif-dev/bin/oclif-dev', ['--version'])
const sha = await gitSha(process.cwd(), {short: true})
expect(stdout).to.contain(`@oclif/dev-cli/${pjson.version}.${sha} ${target} node-v${nodeVersion}`)
Expand Down

0 comments on commit 6650cc1

Please sign in to comment.