Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/albinotonnina/tdd-javascript-coding-dojo
- Owner: albinotonnina
- Created: 2015-03-29T11:57:01.000Z (over 9 years ago)
- Default Branch: roman-numerals
- Last Pushed: 2018-01-12T17:55:55.000Z (almost 7 years ago)
- Last Synced: 2024-04-15T01:16:09.111Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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