+ 1
test driven development javascript
recently I've got a task to test a server url using test driven development pattern (functional test ) but I've never done that before how exactly should I do it?
1 Answer
+ 1
Test-driven development is when you write tests before writing code so that you know what your code needs to accomplish. Then you write the code to satisfy the tests. So... write some tests!