我正在节点js中用jest进行测试。我的文件索引.jsconst config = helper.config;const _ = helper.module._;它抛出错误。helper is not defined.这里的帮助者是全局对象。我的玩笑测试 jsconst assign = require('xxxxxx/index');const body = {}describe("forgotPassword()", () => { it("should return true", () => { //Testing a boolean expect(assign(body)).toBeTruthy(); //Another way to test a boolean expect(assign(body)).toEqual(true); });});有什么办法吗?
1 回答
拉莫斯之舞
TA贡献1820条经验 获得超10个赞
我找到了这个问题的答案。
我想在运行测试之前运行一些文件。
将其添加到package.json
"jest": {
"setupFiles": ["./app.js"]
}
在 setupFiles 中添加文件。此文件将在测试开始之前运行。
添加回答
举报
0/150
提交
取消