<aside> 📜 TABLE OF CONTENTS

Code Testing 💻

Our app uses JEST for automated testing

Getting Started with JEST

Use the following

npm install --save-dev jest

Code coverage

Codecov Is used to report on the coverage

Running tests locally

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

Supporting Links

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

User Feedback

Sprint 2