我试图在 Jest 中测试以下模块:
// myModule.js
export function otherFn() {
console.log('do something');
}
export function testFn() {
otherFn();
// do other things
}
如上所示,它导出一些命名函数,重要的是 testFn
使用 otherFn
。
在 Jest 中,当我为 testFn
编写单元测试时,我想模拟 otherFn
函数,因为我不希望 otherFn
中的错误影响我对 testFn
的单元测试。我的问题是,我不知道最好的方法是什么:
// myModule.test.js
jest.unmock('myModule');
import { testFn, otherFn } from 'myModule';
describe('test category', () => {
it('tests something about testFn', () => {
// I want to mock "otherFn" here but can't reassign
// a.k.a. can't do otherFn = jest.fn()
});
});
任何帮助/见解都是值得感激的。