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

我正在节点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);

    });

});

有什么办法吗?


猛跑小猪
浏览 82回答 1
1回答

拉莫斯之舞

我找到了这个问题的答案。我想在运行测试之前运行一些文件。将其添加到package.json "jest": {    "setupFiles": ["./app.js"]} 在 setupFiles 中添加文件。此文件将在测试开始之前运行。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript