为了账号安全,请及时绑定邮箱和手机立即绑定

Jest测试api创建自己的上下文节点js

Jest测试api创建自己的上下文节点js

猛跑小猪 2022-08-27 09:48:13
我正在节点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 中添加文件。此文件将在测试开始之前运行。


查看完整回答
反对 回复 2022-08-27
  • 1 回答
  • 0 关注
  • 81 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信