✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Тестування
Дано:
const fn = jest.fn();
fn.mockReturnValue(42);
fn.mockReturnValueOnce(100);
console.log(fn(), fn(), fn());
Який результат виведе console.log?