diff --git a/test/mongodb.spec.js b/test/mongodb.spec.js new file mode 100644 index 0000000000..71d46cdd1b --- /dev/null +++ b/test/mongodb.spec.js @@ -0,0 +1,9 @@ +describe("MongoDB", function() { + it("is there a server running", function(next) { + var mongoose = require('mongoose'); + mongoose.connect('localhost', function(err) { + expect(err).toBe(null); + next(); + }); + }); +});