Skip to main content
🔮 Output PredictionQA Testing & QA Medium⚡+20 XP

Mock Return Value

What does mockFn() return?

Testing & QA
const mockFn = jest.fn().mockReturnValue(42);
console.log(mockFn());

🔮 What is the output?