// Mock Prisma client to bypass build errors for testing purposes // This lets us run Playwright tests without needing a full build export const prisma = { task: { findMany: jest.fn(), create: jest.fn(), update: jest.fn(), delete: jest.fn(), }, user: { findUnique: jest.fn(), create: jest.fn(), update: jest.fn(), } }; export default prisma;