We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
These matchers are called like so:
expect(actual).toBeCloseTo(3) expect(actual).to_be_close_to(3)
The words are mushed together and bump cased or separated by _.
_
The word to gets stuck at the beginning.
to
All matchers can be negated by adding a not at the beginning of the matcher call:
not
expect(actual).notToBeCloseTo(3) expect(actual).not_to_be_close_to(3)