Code katas for the TDD workshop.
node
installed
Optional We recommend using Visual Studio Code. The following extensions may be useful as well:
In order to install the dependencies, please execute npm install
.
Every time that you want to run your tests, execute npm test
.
Alternatively you can execute npm run test:watch
to keep Jest running in watch mode; this means that your tests will re-run whenever you make changes to your code files.
You can obtain a report of your tests execution by using npm run test:report
. After that you can execute npm run report
to see the resulting report in the browser.