当我尝试在nodejs服务器上运行jest测试用例时出现此错误
TypeError: logWarnFn is not a function
18 | });
19 | if (!user) {
> 20 | throw new createHttpError.BadRequest(i18n.__("user_not_exist"));
| ^
21 | }
我使用i18n模块进行翻译。不知道为什么杰斯特不接电话。
模拟i18n模块似乎可以解决这个问题。
jest.mock("i18n")