<aside> 📜 TABLE OF CONTENTS
Our app uses JEST for automated testing
Use the following
npm install --save-dev jest
Codecov Is used to report on the coverage
Ensure that you have jest installed
npm install --save-dev jest
Add the following section to your package.json
:
{
"scripts": {
"test": "jest"
}
}
Once you have written the tests, on your terminal run the following to get a report on the lines covered
npm test
To learn more about using Cove follow the link below
https://docs.codecov.com/docs/quick-start
To learn more about JEST follow the link below
https://docs.codecov.com/docs/quick-start