Testing guides and references for ComponentForge.
- Testing Overview - Testing strategy and approach
- Integration Testing - API and service integration tests
- E2E Testing - End-to-end Playwright tests
- Manual Testing - Manual test checklist
- Testing Reference - Quick reference for running tests
# Run all tests
make test
# Backend tests only
cd backend && source venv/bin/activate && pytest tests/ -v
# Frontend unit tests
cd app && npm test
# E2E tests with Playwright
cd app && npm run test:e2e
# Accessibility tests
cd app && npm run test:a11y- Backend API endpoints (pytest)
- AI agent workflows (LangChain mocks)
- Frontend components (Jest + React Testing Library)
- E2E user flows (Playwright)
- Accessibility compliance (axe-core)
See Testing Overview for comprehensive testing strategy.