Skip to content

Commit 4458785

Browse files
committed
Fix unused variable lint error in useInkBleed test
Prefix 'run' with underscore in cancel() test case where the start() return value is intentionally unused -- cancel() does not take a run token, unlike finish().
1 parent 1679f7b commit 4458785

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/taskdeck-web/src/tests/components/paper/useInkBleed.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ describe('useInkBleed', () => {
165165

166166
it('cancel() clears state without firing done', () => {
167167
const { exposed } = createHost()
168-
const run = exposed.bleed.start()
168+
const _run = exposed.bleed.start()
169169
vi.advanceTimersByTime(1000)
170170

171171
exposed.bleed.cancel()

0 commit comments

Comments
 (0)