Skip to content

Latest commit

 

History

History
40 lines (28 loc) · 1021 Bytes

File metadata and controls

40 lines (28 loc) · 1021 Bytes

Testing Documentation

Testing guides and references for ComponentForge.

Contents

Quick Reference

# 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

Test Coverage

  • 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.