회원가입, 로그인
CI / test (push) Successful in 3m36s
CI / pr_and_merge (push) Successful in 1m17s

This commit is contained in:
2025-12-01 03:24:38 +09:00
parent 64d2e9d1af
commit 5f541e9524
25 changed files with 44 additions and 13 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ const BASE_URL = "http://localhost";
// 이렇게 하면 CI/로컬 어디에서도 DATABASE_URL 이나 실제 DB 없이 Auth API 테스트를 실행할 수 있다.
const inMemoryUsers: any[] = [];
vi.mock("@/generated/prisma/client", () => {
vi.mock("@prisma/client", () => {
class PrismaClientMock {
user = {
findUnique: async ({ where: { email } }: any) => {