M
assert.match
History
Added in: v13.6.0, v12.16.0
v13.6.0, v12.16.0
Introduced in: v0.1.21
v0.1.21
Message may now be a
printf-like format string or function.v26.0.0
This API is no longer experimental.
v16.0.0
assert.match(string, regexp, message?): void
Attributes
Expects the string input to match the regular expression.
import assert from 'node:assert/strict'; assert.match('I will fail', /pass/); // AssertionError [ERR_ASSERTION]: The input did not match the regular ... assert.match(123, /pass/); // AssertionError [ERR_ASSERTION]: The "string" argument must be of type string. assert.match('I will pass', /pass/); // OK
const assert = require('node:assert/strict'); assert.match('I will fail', /pass/); // AssertionError [ERR_ASSERTION]: The input did not match the regular ... assert.match(123, /pass/); // AssertionError [ERR_ASSERTION]: The "string" argument must be of type string. assert.match('I will pass', /pass/); // OK
If the values do not match, or if the string argument is of another type than
string, 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 Error then it will be thrown instead of the
AssertionError.