如何模拟Knex更新数据库方法?

时间:2019-04-11 16:27:08

标签: node.js jestjs knex.js

当尝试使用Jest模拟来测试DAO方法时,我遇到了一个问题。它一直在失败。我不知道该怎么办。有人可以帮我吗?

static async updateActivity(candidateId, leaderId, label, time) {
    let isActive = label == constants.ADD_USER ? false : true;
    await candidateTable().update({
      label,
      time,
      isActive
    }).where({candidateId, leaderId});
}

错误是:

TypeError: Cannot read property 'where' of undefined

0 个答案:

没有答案