We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44ad0bc commit 89ed1a2Copy full SHA for 89ed1a2
1 file changed
src/app/actions/auth.test.ts
@@ -50,7 +50,7 @@ function mockSupabase(
50
51
const mockSupabaseClient = {
52
auth: {
53
- signInWithPassword: mockSignIn,
+ signInWithPassword: mockSignIn, // ggignore
54
signOut: mockSignOut,
55
},
56
from: vi.fn(() => ({
@@ -171,7 +171,7 @@ describe('auth server actions', () => {
171
172
vi.mocked(createClient).mockResolvedValue({
173
174
- signInWithPassword: vi.fn().mockResolvedValue({
+ signInWithPassword: vi.fn().mockResolvedValue({ // ggignore
175
data: { user: { id: 'user-1', email: 'test@test.com' } },
176
error: null,
177
}),
0 commit comments