Skip to content

Commit 3272854

Browse files
committed
Lint warning fixed
1 parent 3d56b8f commit 3272854

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/client.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ it('throws AbortError with message "Request was aborted" when timeout signal abo
7171
const origThrowIfAborted = AbortSignal.prototype.throwIfAborted
7272
// @ts-expect-error: Simulate environment without throwIfAborted for coverage
7373
AbortSignal.prototype.throwIfAborted = undefined
74-
global.fetch = vi.fn().mockImplementation(async (input) => {
74+
global.fetch = vi.fn().mockImplementation(async (_input) => {
7575
throw new Error('fetch should not be called if signal is already aborted')
7676
})
7777
const client = createClient({

0 commit comments

Comments
 (0)