我使用Jest进行测试。
我有一个带有调用api函数的模块。此模块中的功能使用不同的功能,该功能也将导出。如何模拟callApiRequest()并在每次测试后将其还原?
export const callApiRequest = () => {};
export const fetchItems = () => callApiRequest();
export const fetchConfig = () => callApiRequest();
当我使用jest.spyOn()时,测试结果表明未调用它。