Skip to content

Commit

Permalink
Fix lint error in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonpayton committed Nov 26, 2024
1 parent 3b83ab6 commit 312bfbe
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ describe('handleRequest', () => {
);
});
it('Should preserve the Content-Type header when POSTing', async () => {
const fetchMock = vitest.fn(async () => {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const fetchMock = vitest.fn(async (u: string, o: RequestInit) => {
return {
status: 200,
statusText: 'OK',
Expand Down

0 comments on commit 312bfbe

Please sign in to comment.