mocha and mongoose timeout mocha and mongoose timeout mongoose mongoose

mocha and mongoose timeout


Your issue probably comes from using mongoose.createConnection instead of mongoose.connect. Mongoose populates mongoose.connection which you use above only when using .connect, in case of .createConnection it returns connection object from createConnection function.

(Little late answer but I found your question during search for my own issue with createConnection)