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:
@@ -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 dbResults = await testDatabaseConnection(supabase);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user