如何检查速度是在带有摩卡的流星中使用镜像数据
How to check velocity is using mirrored data in meteor with mocha
我正在使用 velocity + mocha 来测试我的 meteor 应用程序。在客户端,当我 运行 测试用例如下所示时,它通过了。
describe("categories server", function(){
it("should return categories", function(done){
setTimeout(done,1500);
chai.assert(Cats.find({}).count() > 0);
this.timeout(1500);
});
但是在客户端,我在 mocha iframe 中得到类似 test.And 的空白集合,所有依赖于数据库的字段都是空的。请提供任何帮助。我是测试新手。
- 执行
meteor mongo
进入您应用的 MongoDB shell。
- 在MongoDB中执行
use mocha
shell切换到mocha镜像使用的数据库
- 使用类似以下内容验证数据库的内容:
db.cats.find().pretty()
.
我正在使用 velocity + mocha 来测试我的 meteor 应用程序。在客户端,当我 运行 测试用例如下所示时,它通过了。
describe("categories server", function(){
it("should return categories", function(done){
setTimeout(done,1500);
chai.assert(Cats.find({}).count() > 0);
this.timeout(1500);
});
但是在客户端,我在 mocha iframe 中得到类似 test.And 的空白集合,所有依赖于数据库的字段都是空的。请提供任何帮助。我是测试新手。
- 执行
meteor mongo
进入您应用的 MongoDB shell。 - 在MongoDB中执行
use mocha
shell切换到mocha镜像使用的数据库 - 使用类似以下内容验证数据库的内容:
db.cats.find().pretty()
.