If the values are deeply equal, an AssertionError is thrown with amessage property set equal to the value of the message parameter. If themessage parameter is undefined, a default
error message is assigned. If themessage parameter is an instance of an Error then it will be thrown
instead of the AssertionError.
Strict assertion mode
An alias of notDeepStrictEqual.
Legacy assertion mode
Tests for any deep inequality. Opposite of deepEqual.
If the values are deeply equal, an
AssertionError
is thrown with amessage
property set equal to the value of themessage
parameter. If themessage
parameter is undefined, a default error message is assigned. If themessage
parameter is an instance of anError
then it will be thrown instead of theAssertionError
.