Awaits the asyncFn promise or, if asyncFn is a function, immediately
calls the function and awaits the returned promise to complete. It will then
check that the promise is rejected.
If asyncFn is a function and it throws an error synchronously,assert.rejects() will return a rejected Promise with that error. If the
function does not return a promise, assert.rejects() will return a rejectedPromise with an ERR_INVALID_RETURN_VALUE error. In both cases the error
handler is skipped.
Besides the async nature to await the completion behaves identically to throws.
If specified, error can be a Class,
RegExp, a validation function,
an object where each property will be tested for, or an instance of error where
each property will be tested for including the non-enumerable message andname properties.
If specified, message will be the message provided by the AssertionError if the asyncFn fails to reject.
error cannot be a string. If a string is provided as the second
argument, then error is assumed to be omitted and the string will be used formessage instead. This can lead to easy-to-miss mistakes. Please read the
example in throws carefully if using a string as the second
argument gets considered.
Awaits the
asyncFn
promise or, ifasyncFn
is a function, immediately calls the function and awaits the returned promise to complete. It will then check that the promise is rejected.If
asyncFn
is a function and it throws an error synchronously,assert.rejects()
will return a rejectedPromise
with that error. If the function does not return a promise,assert.rejects()
will return a rejectedPromise
with anERR_INVALID_RETURN_VALUE
error. In both cases the error handler is skipped.Besides the async nature to await the completion behaves identically to throws.
If specified,
error
can be aClass
,RegExp
, a validation function, an object where each property will be tested for, or an instance of error where each property will be tested for including the non-enumerablemessage
andname
properties.If specified,
message
will be the message provided by theAssertionError
if theasyncFn
fails to reject.error
cannot be a string. If a string is provided as the second argument, thenerror
is assumed to be omitted and the string will be used formessage
instead. This can lead to easy-to-miss mistakes. Please read the example in throws carefully if using a string as the second argument gets considered.