Fix testAuth arguments

The testAuth function in src/lib/supabase/tests/index.ts was called with only one argument, but it expects two. This commit fixes the issue by passing the supabase URL as the second argument to the testAuth function.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 12:51:07 +00:00
parent 971a1d29e5
commit b30fb33384

View File

@@ -60,7 +60,8 @@ export const testSupabaseConnection = async (): Promise<TestResults> => {
} }
// 테스트 실행 // 테스트 실행
const authResults = await testAuth(supabase); // testAuth 함수에 두 번째 인자로 URL 전달
const authResults = await testAuth(supabase, results.url);
const apiResults = await testRestApi(supabase); const apiResults = await testRestApi(supabase);
const dbResults = await testDatabaseConnection(supabase); const dbResults = await testDatabaseConnection(supabase);