Using npm :
npm install
to retrieve jest and dependencies
npm run test
to run the tests
Code goes in src folder, unit tests go in test folder and should end with .test.js.
Test coverage will be generated by Jest as a HTML report in coverage folder.
Implement the following tasks using a TDD approach.
- Fizz Buzz : http://codingdojo.org/kata/FizzBuzz/
- Roman Numerals : http://codingdojo.org/kata/RomanNumerals/
- Numbers In Words : http://codingdojo.org/kata/NumbersInWords/