Skip to content

Commit f5ceef6

Browse files
committed
fix format
1 parent 323459a commit f5ceef6

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

autogpt_platform/frontend/src/tests/integrations/mock-supabase-request.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { vi } from "vitest";
22

3-
43
export const mockSupabaseClient = {
54
auth: {
65
getUser: vi.fn().mockResolvedValue({
@@ -19,7 +18,6 @@ export const mockSupabaseClient = {
1918
},
2019
};
2120

22-
2321
vi.mock("@/lib/supabase/server/getServerSupabase", () => ({
2422
getServerSupabase: vi.fn().mockResolvedValue(mockSupabaseClient),
2523
}));

autogpt_platform/frontend/src/tests/integrations/setup-nextjs-mocks.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ vi.mock("next/link", () => ({
6060
),
6161
}));
6262

63-
6463
export const resetMockRouter = () => {
6564
mockRouter.push.mockClear();
6665
mockRouter.replace.mockClear();
@@ -70,7 +69,6 @@ export const resetMockRouter = () => {
7069
mockRouter.refresh.mockClear();
7170
};
7271

73-
7472
export const resetMockCookies = () => {
7573
mockCookies.get.mockClear();
7674
mockCookies.getAll.mockClear();

0 commit comments

Comments
 (0)