Skip to content

Commit

Permalink
chore(linting): no-unused-vars
Browse files Browse the repository at this point in the history
  • Loading branch information
lukekarrys committed May 4, 2024
1 parent 03e97fb commit c4f85f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const testShim = join(workDir, 'test')
const testShimCmd = testShim + '.cmd'
const testShimPowershell = testShim + '.ps1'

test('setup', t => {
test('setup', () => {
fs.rmSync(workDir, { recursive: true, force: true })
fs.mkdirSync(workDir)
fs.writeFileSync(testShbang + '.js', '#!/usr/bin/env node\ntrue')
Expand Down Expand Up @@ -76,4 +76,4 @@ test('async-read-not-shim', t =>
test('sync-read-not-shim', async t =>
t.throws(() => readCmdShim.sync(__filename), { code: 'ENOTASHIM' }))

test('cleanup', async t => fs.rmSync(workDir, { recursive: true, force: true }))
test('cleanup', async () => fs.rmSync(workDir, { recursive: true, force: true }))

0 comments on commit c4f85f3

Please sign in to comment.