assert.strictEqual(1, '1', newTypeError('Inputs are not identical')); // TypeError: Inputs are not identical
If the values are not strictly equal, an AssertionError is thrown with a message property set equal to the value of the message parameter. If the message parameter is undefined, a
default error message is assigned. If the message parameter is an instance of an Error then it will be thrown
instead of the AssertionError.
Tests strict equality between the
actualandexpectedparameters as determined byObject.is().If the values are not strictly equal, an
AssertionErroris thrown with amessageproperty set equal to the value of themessageparameter. If themessageparameter is undefined, a default error message is assigned. If themessageparameter is an instance of anErrorthen it will be thrown instead of theAssertionError.