miinventario-v2/apps/backend/test/setup.ts
rckrdmrd 1a53b5c4d3 [MIINVENTARIO] feat: Initial commit - Sistema de inventario con análisis de video IA
- 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>
2026-01-13 02:25:48 -06:00

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
});