TDD in Node.js is not substantially different than TDD in any other language. There are a dizzying array of frameworks to choose from. I have a strong preference for Jasmine as the test framework, particularly in CoffeeScript.?
If you add the browser to the mix things get complicated, particularly if you are trying to test in the browser or test code you expect to manipulate the DOM in specific ways. But, server side is exactly the same as any other language, and any old TDD book/tutorial will put you in the right direction.?
toggle quoted message
Show quoted text
On Wednesday, April 13, 2016,
reuven.yagel@... [testdrivendevelopment] <
testdrivendevelopment@...> wrote:
?
Following the previous Java thread, I'm looking for recommended and updated sources (tutorials/books/courses/etc) on TDDing javascript applications, mainly server side.