Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/assert.js
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ function expectsError(stackStartFn, actual, error, message) {
error);
}
message = error;
error = null;
error = undefined;
}

if (actual === NO_EXCEPTION_SENTINEL) {
Expand All @@ -482,7 +482,7 @@ function expectsError(stackStartFn, actual, error, message) {
details += message ? `: ${message}` : '.';
const fnType = stackStartFn === rejects ? 'rejection' : 'exception';
innerFail({
actual,
actual: undefined,
expected: error,
operator: stackStartFn.name,
message: `Missing expected ${fnType}${details}`,
Expand All @@ -500,7 +500,7 @@ function expectsNoError(stackStartFn, actual, error, message) {

if (typeof error === 'string') {
message = error;
error = null;
error = undefined;
}

if (!error || expectedException(actual, error)) {
Expand Down
34 changes: 21 additions & 13 deletions test/parallel/test-assert.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,32 +199,40 @@ a.throws(() => thrower(TypeError), (err) => {
const noop = () => {};
assert.throws(
() => { a.throws((noop)); },
common.expectsError({
{
code: 'ERR_ASSERTION',
message: /^Missing expected exception\.$/,
operator: 'throws'
}));
message: 'Missing expected exception.',
operator: 'throws',
actual: undefined,
expected: undefined
});

assert.throws(
() => { a.throws(noop, TypeError); },
common.expectsError({
{
code: 'ERR_ASSERTION',
message: /^Missing expected exception \(TypeError\)\.$/
}));
message: 'Missing expected exception (TypeError).',
actual: undefined,
expected: TypeError
});

assert.throws(
() => { a.throws(noop, 'fhqwhgads'); },
common.expectsError({
{
code: 'ERR_ASSERTION',
message: /^Missing expected exception: fhqwhgads$/
}));
message: 'Missing expected exception: fhqwhgads',
actual: undefined,
expected: undefined
});

assert.throws(
() => { a.throws(noop, TypeError, 'fhqwhgads'); },
common.expectsError({
{
code: 'ERR_ASSERTION',
message: /^Missing expected exception \(TypeError\): fhqwhgads$/
}));
message: 'Missing expected exception (TypeError): fhqwhgads',
actual: undefined,
expected: TypeError
});

let threw = false;
try {
Expand Down