Restores all mocks and replaced properties back to their original value.
Equivalent to calling .mockRestore() on every mocked function
and .restore() on every replaced property.
Beware that jest.restoreAllMocks() only works when the mock was created
with jest.spyOn(); other mocks will require you to manually restore them.
Restores all mocks and replaced properties back to their original value. Equivalent to calling
.mockRestore()
on every mocked function and.restore()
on every replaced property.Beware that
jest.restoreAllMocks()
only works when the mock was created withjest.spyOn()
; other mocks will require you to manually restore them.