PORT- Port NumberMONGODB_URI- URL to the running mongo instance/db
http [options: post/get/put/delete] localhost:3000- Endpoint:
/categories- Returns a JSON object with all categories information in it.
- Endpoint:
/categories/:id- Returns a JSON object with the specified category information in it.
- Endpoint:
/products- Returns a JSON object with all products information in it.
- Endpoint:
/products/:id- Returns a JSON object with the specified product information in it.
- How do you run tests?
npm run test - What assertions were made?
- DB should be able to run the following commands: get(), post(), put(), delete() on both routes
- DB should throw an error if it unsuccessfully runs the following commands: get(), post(), put(), delete() on both routes
- What assertions need to be / should be made?
- testing on server
- testing on middleware

