- Backend NestJS con módulos de autenticación, inventario, créditos - Frontend React con dashboard y componentes UI - Base de datos PostgreSQL con migraciones - Tests E2E configurados - Configuración de Docker y deployment Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
234 B
TypeScript
14 lines
234 B
TypeScript
import 'reflect-metadata';
|
|
|
|
// Increase timeout for E2E tests
|
|
jest.setTimeout(30000);
|
|
|
|
// Global test setup
|
|
beforeAll(async () => {
|
|
// Any global setup can go here
|
|
});
|
|
|
|
afterAll(async () => {
|
|
// Any global cleanup can go here
|
|
});
|