// Jest setup file // Runs before all tests // Suppress console output during tests unless there's a failure global.console = { ...console, log: jest.fn(), debug: jest.fn(), info: jest.fn(), warn: jest.fn(), }; // Increase timeout for slow operations jest.setTimeout(15000);