/**
* Jest Configuration for E2E Tests
*/
const baseConfig = require('./jest.config');
module.exports = {
...baseConfig,
testMatch: ['<rootDir>/tests/e2e/**/*.e2e-spec.ts'],
testTimeout: 120000,
maxWorkers: 1, // Run E2E tests sequentially
};