7 lines
228 B
JavaScript
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); |