gpt4 book ai didi

javascript - 如何使用 Promise 创建 Jest 模拟函数?

转载 作者:行者123 更新时间:2023-11-29 16:31:28 24 4
gpt4 key购买 nike

我正在尝试通过创建此 Promise 函数来模拟 axios 模块

// __mocks__/axios.js
export default function axios() {
return new Promise((resolve) => {
resolve({ data: {} });
});
}

但是当我尝试在我的 *.test.js 中调用它时,我得到了这个错误

<PortalUploadForm /> › Submit Data correctly

expect(jest.fn())[.not].toHaveBeenCalledTimes()

Matcher error: received value must be a mock or spy function

Received has type: function
Received has value: [Function axios]

Received has type: function
Received has value: [Function axios]

87 | await wait(() => {
88 | // mockAxios.mockResponse({ data: { ...uploadPortalResult } });
> 89 | expect(mockAxios).toHaveBeenCalledTimes(1);
| ^
90 | expect(nameInput.value).toEqual(null);
91 | });
92 | });

那么我如何使用 jest.fn() 制作一个模拟的 promise 函数呢?

谢谢!

最佳答案

看起来您正在尝试将 axios 的默认导出模拟为一个模拟函数,该模拟函数返回已解析的 Promise

在这种情况下,您可以像这样为 axios 创建模拟:

__mocks__/axios.js

export default jest.fn(() => Promise.resolve({ data: {} }));

...您可以在这样的测试中使用它:

import axios from 'axios';

const func = () => axios();

test('func', async () => {
const promise = func();
expect(axios).toHaveBeenCalledTimes(1); // Success!
await expect(promise).resolves.toEqual({ data: {} }); // Success!
})

关于javascript - 如何使用 Promise 创建 Jest 模拟函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56285530/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com