jest-date icon indicating copy to clipboard operation
jest-date copied to clipboard

Usage with toHaveBeenCalledWith

Open undsoft opened this issue 5 months ago • 0 comments

With other primitives in Jest you can do something like:

expect(myFunction).toHaveBeenCalledWith(
  expect.stringMatching('test'),
  expect.closeTo(2),
);

It would be cool to have something similar to this.

undsoft avatar Jan 26 '24 19:01 undsoft