Test-Driven Development
Detect Test Environment
!ls package.json pytest.ini pyproject.toml go.mod Cargo.toml *.csproj Gemfile mix.exs 2>/dev/null
!find . -type f \( -name "*.test.*" -o -name "*.spec.*" -o -name "test_*" -o -name "*_test.*" \) -not -path "*/node_modules/*" -not -path "*/.git/*" 2>/dev/null | head -5
The TDD Cycle
For the requested feature, repeat this cycle until complete:
RED — Write a Failing Test
- Write the smallest possible test that describes the n
[Description truncada. Veja o README completo no GitHub.]