# Obey The Testing Goat [TOC](https://www.obeythetestinggoat.com/book/toc.html) [Last At](https://www.obeythetestinggoat.com/book/chapter_explicit_waits_1.html) (Chapter 5) ### TDD Order Of Operations: 1. Code a Test! 2. Run test and ensure it FAILS! 3. Write MINIMUM Code to PASS! 4. Run test and ensure it PASSES! 5. Rewrite code smaller/better, Refactor, DRY, etc. 6. Run test and ensure it PASSES! 7. Commit to a Git repo!