在Mocha测试之间运行Knex迁移

时间:2016-06-30 17:51:28

标签: phantomjs mocha casperjs knex.js mocha-phantomjs

我正在使用Mocha用测试数据库测试我的Nodejs应用程序。为了在每次测试之前重置数据库,我有以下代码,这完全有效:

  process.env.NODE_ENV = 'test';
  var knex = require('../db/knex');

  describe("Add Item", function() {

      beforeEach(function(done) {
        knex.migrate.rollback()
        .then(function() {
          knex.migrate.latest()
          .then(function() {
            return knex.seed.run()
            .then(function() {
              done();
            });
          });
        });
      });

  ...

我已经从mocha切换到mocha-casperjs进行集成测试,现在knex迁移将无法运行。我在每个钩子之前给出了与此完全相同的错误消息:

     undefined is not an object (evaluating 'knex.migrate.rollback')
     phantomjs://platform/new-item.js:12:17
     value@phantomjs://platform/mocha-casperjs.js:114:20
     callFnAsync@phantomjs://platform/mocha.js:4314:12
     run@phantomjs://platform/mocha.js:4266:18
     next@phantomjs://platform/mocha.js:4630:13
     phantomjs://platform/mocha.js:4652:9
     timeslice@phantomjs://platform/mocha.js:12620:27

1 个答案:

答案 0 :(得分:0)

我很确定webpack build中不包含迁移功能。如果你转到http://knexjs.org/打开调试控制台并检查不同的客户端,例如mysql.migrate你看到根本没有声明任何函数。

实际上,如果你明确加载webpack build而不是node lib,你也可以用节点检查它。

// load webpack build instead of node build...
let knex = require('knex/build/knex')({client : 'pg'});
console.log(knex.migrate);
// outputs: {}

所以......问题是你为什么要在PhantomJS浏览器而不是node.js上运行测试?

client.migrate is empty