What’s happening?
Hello everyone! 
I finished the exercise tracker project and I have tested every single use case for project and it seems to be working fine. However, the following tests are not being passed:
Failed tests:
- A request to a user’s log
GET /api/users/:_id/logsreturns a user object with acountproperty representing the number of exercises that belong to that user. - A
GETrequest to/api/users/:id/logswill return the user object with alogarray of all the exercises added. - Each item in the
logarray that is returned fromGET /api/users/:id/logsis an object that should have adescription,duration, anddateproperties. - The
descriptionproperty of any object in thelogarray that is returned fromGET /api/users/:id/logsshould be a string. - The
durationproperty of any object in thelogarray that is returned fromGET /api/users/:id/logsshould be a number. - The
dateproperty of any object in thelogarray that is returned fromGET /api/users/:id/logsshould be a string… Use thedateStringformat of theDateAPI.
Can you help me find my mistake(s)? I checked everything and it seems ok.
Link to the project:
https://replit.com/@lambolead/boilerplate-project-exercisetracker#server.js
Browser info:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36 Edg/94.0.992.31
Challenge: Exercise Tracker
Link to the challenge:

, and thanks for this gift