I'm migrating Mocha/Chai tests to Jest and see that there are 2 matchers in Mocha/Chai used.
- equal: Asserts that the target is strictly (===) equal to the given value.
- eql: Asserts that the target is deeply equal to value. ( and this is equivalent of using
equalwithdeepmutator in matcher =>.to.deep.equal)
Which Jest matchers should I use instead of these 2?