如何检查速度是使用mocha中的流星镜像数据

时间:2015-05-13 17:56:25

标签: meteor mocha meteor-velocity

我正在使用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。我是测试的新手。

1 个答案:

答案 0 :(得分:3)

  1. 执行meteor mongo以进入应用的MongoDB shell。
  2. 在MongoDB shell中执行use mocha以切换到Mocha镜像使用的数据库。
  3. 使用以下内容验证数据库的内容:db.cats.find().pretty()