@@ -882,11 +882,16 @@ test('.throws()', gather(t => {
882
882
throw new Error ( 'foo' ) ;
883
883
} ) , { expectBoolean : false } ) ;
884
884
885
- // Passes when string is thrown, only when any is set to true.
885
+ // Passes when string is thrown and `expectation. any` is true.
886
886
passes ( t , ( ) => assertions . throws ( ( ) => {
887
887
throw 'foo' ; // eslint-disable-line no-throw-literal
888
888
} , { any : true } ) , { expectBoolean : false } ) ;
889
889
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
+
890
895
// Passes because the correct error is thrown.
891
896
passes ( t , ( ) => {
892
897
const error = new Error ( 'foo' ) ;
@@ -1098,9 +1103,12 @@ test('.throwsAsync()', gather(t => {
1098
1103
// Passes because the promise was rejected with an error.
1099
1104
throwsAsyncPasses ( t , ( ) => assertions . throwsAsync ( Promise . reject ( new Error ( ) ) ) ) ;
1100
1105
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.
1102
1107
throwsAsyncPasses ( t , ( ) => assertions . throwsAsync ( Promise . reject ( 'foo' ) , { any : true } ) ) ; // eslint-disable-line prefer-promise-reject-errors
1103
1108
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
+
1104
1112
// Passes because the function returned a promise rejected with an error.
1105
1113
throwsAsyncPasses ( t , ( ) => assertions . throwsAsync ( ( ) => Promise . reject ( new Error ( ) ) ) ) ;
1106
1114
0 commit comments