Loading...
Loading...
Run integration tests for component interactions
npx skill4agent add wojons/skills testing-integration# Run integration tests
npm run test:integration # Node.js integration tests
pytest tests/integration/ # Python integration tests
go test -tags=integration # Go integration tests
# Test specific integrations
npm run test:integration -- --grep "database"
pytest tests/integration/test_api_client.py
# Run with test containers for external services
docker-compose -f docker-compose.test.yml up --abort-on-container-exitIntegration Test Results:
──────────────────────────────
✅ API Service ↔ Database
✓ User data persists correctly
✓ Transaction rollback on failure
❌ Payment Service ↔ Banking API
✗ Authentication token refresh fails
✗ Currency conversion rate mismatch
⚠️ Email Service ↔ Queue
⚠️ Message retention period too short
Summary: 8 passed, 2 failed, 1 warning