/**
* Test Setup
*
* Configure test environment for MCP server E2E tests.
* Sets up global test utilities and environment variables.
*/
/* eslint-disable */
// Configure test environment
process.env.NODE_ENV = 'test';
// Increase test timeout for E2E tests
jest.setTimeout(30000);
// Global error handling for unhandled promises
process.on('unhandledRejection', (reason, promise) => {
console.error('Unhandled Rejection at:', promise, 'reason:', reason);
});
process.on('uncaughtException', (error) => {
console.error('Uncaught Exception:', error);
});
// Export for TypeScript compilation
export {};