I am stuck MongoDB and Mongoose - Create and Save a Record of a Model

I am not able to pass , I am getting this error message // running tests
Creating and saving a db item should succeed (Test timed out)
// tests completed

here is the link to my live glitch

https://sustaining-hurricane-tick.glitch.me

Your code so far
https://sustaining-hurricane-tick.glitch.me

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.122 Safari/537.36.

Challenge: https://www.freecodecamp.org/learn/apis-and-microservices/mongodb-and-mongoose/create-and-save-a-record-of-a-model

Link to the challenge:

Hey, I couldn’t access your code through the URLs you provided. If you want some to be able to see your code, you’ll have to copy the URL from the ‘code’ tab, instead of the ‘live app’ tab when you hit the share button. Fortunately, I was able to access your code by changing the URL a little.

If you look at lines 13-17 in myapp.js

// Add mongodb and mongoose to the project's package.json. Then require 
// mongoose. Store your Mongo Atlas database URI in the private .env file 
// as MONGO_URI. Connect to the database using the following syntax:
//
// mongoose.connect(<Your URI>, { useNewUrlParser: true, useUnifiedTopology: true });

and compare it to how you’re connecting to the database on line 11, you should be able to spot the problem.

@IamSurrett
here it the link

Thanks