My 3 step bug fix process: 1
My 3 step bug fix process:
1. Write a test that asserts the correct behavior. See the test fail, due to the bug. ❌
2. Fix the bug. 🐞
3. See the test turn green. ✅
This proves the bug fix works, documents intent for others, and protects from future regressions.