cjmling / findings

Notes on stuff i finds worth keeping for quick reference later on.
2 stars 0 forks source link

jest toHaveBeenCalledWith partial #347

Open cjmling opened 6 months ago

cjmling commented 6 months ago

use expect.any(Object)

Example:

expect(mockedNavigate).not.toHaveBeenCalledWith("Question", expect.any(Object));

jest toHaveBeenCalledWith partial