DEV Community

Discussion on: Setting up a Minimal, Yet Useful JavaScript Dev Environment

Collapse
 
luriodevz profile image
lvrxx~dvz

"Because the environment assumes you’ll work in TDD style"

What does TDD mean ?

Collapse
 
kamilogorek profile image
Kamil Ogórek

Test Driven Development – en.wikipedia.org/wiki/Test-driven_...

Collapse
 
luriodevz profile image
lvrxx~dvz

Thank you !

Collapse
 
busata profile image
Dries De Smet

Test Driven Development, a practice where you write tests first, and the implementation afterwards.

Can read more online, or Test Driven Development: By Example by Kent Beck