Skip to content

Commit c4f85f3

Browse files
committed
chore(linting): no-unused-vars
1 parent 03e97fb commit c4f85f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const testShim = join(workDir, 'test')
1212
const testShimCmd = testShim + '.cmd'
1313
const testShimPowershell = testShim + '.ps1'
1414

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

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

0 commit comments

Comments
 (0)