Skip to content

Commit

Permalink
chore: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
antongolub committed Dec 25, 2024
1 parent ed19cab commit 8a52c39
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/core.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1127,11 +1127,11 @@ describe('core', () => {

test('accepts ProcessOutput in addition to string', async () => {
await within(async () => {
const tempdir = await $`mktemp -d`
cd(tempdir)
const tmp = await $`mktemp -d`
cd(tmp)
assert.equal(
basename(process.cwd()),
basename(tempdir.toString().trimEnd())
basename(tmp.toString().trimEnd())
)
})
})
Expand Down

0 comments on commit 8a52c39

Please sign in to comment.