Files
freeCodeCamp/test/mongodb.spec.js

10 lines
236 B
JavaScript
Raw Normal View History

2013-12-06 20:17:14 -05:00
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();
});
});
});