Files
2025-12-25 12:02:07 -03:00

7 lines
228 B
JavaScript

// Jest setup for API Gateway tests
process.env.NODE_ENV = 'test';
process.env.JWT_SECRET = 'test-jwt-secret-key';
process.env.LOG_LEVEL = 'error'; // Reduce log noise during tests
// Global test timeout
jest.setTimeout(30000);