我有一个示例数据库'摇滚乐队',收藏'乐队'有四个文档。 这是一个简单的存根(咖啡):
mongo = require('mongoskin')
db = mongo.db('localhost:27017/rockband')
db.collection("bands").find().toArray (err, result) ->
throw err if err
console.log result
这会使json返回良好的数据。
然而,以下mocha测试通过而不返回数据或任何投诉:
should = require("should")
mongo = require('mongoskin')
describe "simple test", ->
err = db = null
before (done) ->
db = mongo.db('localhost:27017/rockband')
done()
it "should pass", ->
db.collection("bands").find().toArray (err, result) ->
throw err if err
console.log result
should.not.exist err
有什么建议吗?