Jestem nowy w Jest, próbuję go użyć do testowania, czy funkcja została wywołana, czy nie. Zauważyłem, że mock.calls.length nie resetuje się dla każdego testu, ale się kumuluje. Jak mogę ustawić 0 przed każdym testem? Nie chcę, żeby moje następne testy zależały od wyników poprzednich.
Wiem, że jest beforeEach w Jest - czy powinienem go użyć? Jaki jest najlepszy sposób na zresetowanie mock.calls.length? Dziękuję Ci.
Przykład kodu:
Sum.js:
import local from 'api/local';
export default {
addNumbers(a, b) {
if (a + b <= 10) {
local.getData();
}
return a + b;
},
};
Sum.test.js
import sum from 'api/sum';
import local from 'api/local';
jest.mock('api/local');
// For current implementation, there is a difference
// if I put test 1 before test 2. I want it to be no difference
// test 1
test('should not to call local if sum is more than 10', () => {
expect(sum.addNumbers(5, 10)).toBe(15);
expect(local.getData.mock.calls.length).toBe(0);
});
// test 2
test('should call local if sum <= 10', () => {
expect(sum.addNumbers(1, 4)).toBe(5);
expect(local.getData.mock.calls.length).toBe(1);
});
local.mockClear()
to nie działa.