Saltar a contenido

🧪 Testing

Flutter Tests

# Unit tests
cd apps/mobile
flutter test

# Integration tests
flutter test integration_test/

# Coverage
flutter test --coverage
genhtml coverage/lcov.info -o coverage/html

Backend Tests

cd apps/backend
npm test

# Watch mode
npm run test:watch

E2E Tests

# Cypress (si aplica)
npm run e2e