Skip to content

Commit 8ebc22d

Browse files
committed
lint
1 parent 7139a2c commit 8ebc22d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/unit/apiClient.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ describe("ApiClient", () => {
5959
totalCount: 2,
6060
};
6161

62-
const mockGet = jest.fn().mockImplementation(async () => ({
62+
const mockGet = jest.fn().mockImplementation(() => ({
6363
data: mockProjects,
6464
error: null,
6565
response: new Response(),
@@ -80,7 +80,7 @@ describe("ApiClient", () => {
8080
detail: "Something went wrong",
8181
};
8282

83-
const mockGet = jest.fn().mockImplementation(async () => ({
83+
const mockGet = jest.fn().mockImplementation(() => ({
8484
data: null,
8585
error: mockError,
8686
response: new Response(),

0 commit comments

Comments
 (0)