// Integration test setup
import { jest } from '@jest/globals';
// Longer timeout for integration tests
jest.setTimeout(120000);
// Integration test specific setup
beforeAll(async () => {
// Setup test infrastructure
});
afterAll(async () => {
// Cleanup test infrastructure
});