我正在节点js中用jest进行测试。
我的文件索引.js
const config = helper.config;
const _ = helper.module._;
它抛出错误。
helper is not defined.
这里的帮助者是全局对象。
我的玩笑测试 js
const 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);
});
});
有什么办法吗?
拉莫斯之舞
相关分类