Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/albinotonnina/tdd-javascript-coding-dojo

Mocha
https://github.com/albinotonnina/tdd-javascript-coding-dojo

Last synced: about 1 month ago
JSON representation

Mocha

Awesome Lists containing this project

README

        

# Javascript codind dojo - TDD

## Roman Numerals Kata

###Red green refactor principle:
Write a minimum test that fails.
Write the minimum code to pass the test.
Refactor

###Common mistakes:
beginners usually forget about important things:
the minimum qualifier is not optional, it is mandatory for doing TDD the proper way.
This can help developing with baby steps.
Baby step: that amount of coding which can be done within 30 seconds
Never forget to check the failing test, always see the red test.
refactoring part often skipped