当尝试使用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