我正在使用velocity + mocha来测试我的流星应用程序。在客户端,当我运行下面的测试用例时,它正在传递。
describe("categories server", function(){
it("should return categories", function(done){
setTimeout(done,1500);
chai.assert(Cats.find({}).count() > 0);
this.timeout(1500);
});
但是在客户端我得到类似测试的空白集合。在mocha iframe中,所有依赖于db的字段都是空的。请任何帮助很多appriciated。我是测试的新手。
答案 0 :(得分:3)
meteor mongo
以进入应用的MongoDB shell。use mocha
以切换到Mocha镜像使用的数据库。db.cats.find().pretty()
。