// Jest setup file // This file runs before each test file // Mock console methods to reduce noise in tests global.console = { ...console, log: jest.fn(), warn: jest.fn(), error: jest.fn() } // Set test environment variables process.env.NODE_ENV = 'test' process.env.PORT = '8083' process.env.API_GATEWAY_URL = 'http://localhost:8080' process.env.SERVICE_ADAPTERS_URL = 'http://localhost:8000' process.env.METRICS_COLLECTOR_URL = 'http://localhost:8081' process.env.NOTIFICATION_SERVICE_URL = 'http://localhost:8082'