Mock A Function With Return Values Using Jest
Jest provides a collection of utilities for working with mocked functions. To create a mock function, do:
A mocked function can then be attributed with a return value.
The mockReturnValue()
function ensures that the value is returned whenever your function is called.
We can also limit the return value to occurring just once.
mockReturnValueOnce()
ensures the value is returned once and all subsequent calls yield null
.
Last updated