Skip to content

Commit be5000a

Browse files
authoredFeb 28, 2024··
Fix throws assertions rejecting falsy values when any: true
Fixes #3312
1 parent 1d62caf commit be5000a

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed
 

‎lib/assert.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,7 @@ export class Assertions {
417417
}
418418

419419
let retval;
420+
let threw = false;
420421
let actual = null;
421422
try {
422423
retval = fn();
@@ -429,10 +430,11 @@ export class Assertions {
429430
}));
430431
}
431432
} catch (error) {
433+
threw = true;
432434
actual = error;
433435
}
434436

435-
if (!actual) {
437+
if (!threw) {
436438
throw fail(new AssertionError(message, {
437439
assertion: 't.throws()',
438440
formattedDetails: [formatWithLabel('Function returned:', retval)],

‎test-tap/assert.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -882,11 +882,16 @@ test('.throws()', gather(t => {
882882
throw new Error('foo');
883883
}), {expectBoolean: false});
884884

885-
// Passes when string is thrown, only when any is set to true.
885+
// Passes when string is thrown and `expectation.any` is true.
886886
passes(t, () => assertions.throws(() => {
887887
throw 'foo'; // eslint-disable-line no-throw-literal
888888
}, {any: true}), {expectBoolean: false});
889889

890+
// Passes when false is thrown and `expectation.any` is true.
891+
passes(t, () => assertions.throws(() => {
892+
throw false; // eslint-disable-line no-throw-literal
893+
}, {any: true}), {expectBoolean: false});
894+
890895
// Passes because the correct error is thrown.
891896
passes(t, () => {
892897
const error = new Error('foo');
@@ -1098,9 +1103,12 @@ test('.throwsAsync()', gather(t => {
10981103
// Passes because the promise was rejected with an error.
10991104
throwsAsyncPasses(t, () => assertions.throwsAsync(Promise.reject(new Error())));
11001105

1101-
// Passes because the promise was rejected with an with an non-error exception, & set `any` to true in expectation.
1106+
// Passes because the promise was rejected with a non-error reason and `expectation.any` is true.
11021107
throwsAsyncPasses(t, () => assertions.throwsAsync(Promise.reject('foo'), {any: true})); // eslint-disable-line prefer-promise-reject-errors
11031108

1109+
// Passes because the promise was rejected with a falsy non-error reason and `expectation.any` is true.
1110+
throwsAsyncPasses(t, () => assertions.throwsAsync(Promise.reject(), {any: true}));
1111+
11041112
// Passes because the function returned a promise rejected with an error.
11051113
throwsAsyncPasses(t, () => assertions.throwsAsync(() => Promise.reject(new Error())));
11061114

0 commit comments

Comments
 (0)
Please sign in to comment.