import { resetDatabase } from './utils/testDb'; // Reset database before each test beforeEach(async () => { await resetDatabase(); }); // Global test timeout jest.setTimeout(30000); // Mock console methods during tests to reduce noise global.console = { ...console, // Uncomment to ignore specific console methods during tests // log: jest.fn(), // info: jest.fn(), // debug: jest.fn(), };