我正在節(jié)點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); });});有什么辦法嗎?
Jest測試api創(chuàng)建自己的上下文節(jié)點js
猛跑小豬
2022-08-27 09:48:13