List of the call contexts of all calls that have been made to the mock.
List of all the object instances that have been instantiated from the mock.
List of the call order indexes of the mock. Jest is indexing the order of
invocations of all mocks in a test file. The index is starting with 1
.
Optional
lastList of the call arguments of the last call that was made to the mock.
If the function was not called, it will return undefined
.
List of the results of all calls that have been made to the mock.
List of the call arguments of all calls that have been made to the mock.