spurrin-backend/tests/integration/README.md
2025-06-09 11:11:52 +05:30

17 lines
455 B
Markdown

# Integration Tests
This directory contains integration tests for the application. Integration tests should:
- Test interactions between different parts of the application
- Test API endpoints
- Test database operations
- Test external service integrations
## Structure
- `api/` - Tests for API endpoints
- `database/` - Tests for database operations
- `services/` - Tests for service integrations
## Running Tests
```bash
npm run test:integration
```