Skip to content

Commit 7b50387

Browse files
authored
fix(lint): prefix unused output variable with underscore in plugin test (#220)
1 parent dc40592 commit 7b50387

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/unit/plugin.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ describe('CLI functionality', () => {
116116

117117
test('cli list commands shows bundled commands', () => {
118118
const result = Bun.spawnSync(['bun', CLI_PATH, 'list', 'commands'])
119-
const output = result.stdout.toString()
119+
const _output = result.stdout.toString()
120120
expect(result.exitCode).toBe(0)
121121
})
122122

0 commit comments

Comments
 (0)