Skip to content

Commit 89ed1a2

Browse files
fix(security): add ggignore comments for GitGuardian false positives
1 parent 44ad0bc commit 89ed1a2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/app/actions/auth.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ function mockSupabase(
5050

5151
const mockSupabaseClient = {
5252
auth: {
53-
signInWithPassword: mockSignIn,
53+
signInWithPassword: mockSignIn, // ggignore
5454
signOut: mockSignOut,
5555
},
5656
from: vi.fn(() => ({
@@ -171,7 +171,7 @@ describe('auth server actions', () => {
171171

172172
vi.mocked(createClient).mockResolvedValue({
173173
auth: {
174-
signInWithPassword: vi.fn().mockResolvedValue({
174+
signInWithPassword: vi.fn().mockResolvedValue({ // ggignore
175175
data: { user: { id: 'user-1', email: 'test@test.com' } },
176176
error: null,
177177
}),

0 commit comments

Comments
 (0)