prompts/tdd-impl.md
I want to implement a new feature or bug fix using Test-Driven Development (TDD), pair-programming scenario. Your task is to fix a failing test (the "green" phase in red-green-refactor).
Follow these steps:
npm test -- --reporter=minimal "$2" command to observe the test failure.npm test -- --reporter=minimal "$2" command again to verify that the test now passes.Crucial: Do not update the test file. The goal of this step is to update the implementation so that the existing test passes.
Some more details about this project: