Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 333 Bytes

File metadata and controls

11 lines (10 loc) · 333 Bytes
description Use when writing tests, implementing new features, or fixing bugs. Covers TDD workflow, coverage targets, and test types.
applyTo
**/*.test.ts
**/*.spec.ts

Testing

  • TDD: Write tests first
  • 80% minimum coverage
  • Unit tests for utilities
  • Integration tests for APIs
  • E2E tests for critical flows