Tenho o seguinte módulo que estou tentando testar no Jest:
// myModule.js
export function otherFn() {
console.log('do something');
}
export function testFn() {
otherFn();
// do other things
}
Conforme mostrado acima, ele exporta algumas funções nomeadas e testFn
usos importantes otherFn
.
De brincadeira, quando estou escrevendo meu teste de unidade para testFn
, quero simular a otherFn
função porque não quero que erros no otherFn
afetem meu teste de unidade para testFn
. Meu problema é que não tenho certeza da melhor maneira de fazer isso:
// 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()
});
});
Qualquer ajuda / visão é apreciada.
otherFn
em um módulo separado e simular isso.