Add .toBeNullish matcher

This commit is contained in:
Matt McCherry
2024-12-02 07:52:11 +00:00
parent 483d4ab3c3
commit 26dfa6d257
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
getJasmineRequireObj().toBeNullish = function() {
/**
* {@link expect} the actual value to be `null` or `undefined`.
* @function
* @name matchers#toBeNullish
* @since 5.6.0
* @example
* expect(result).toBeNullish():
*/
function toBeNullish() {
return {
compare: function(actual) {
return {
pass: null === actual || void 0 === actual
};
}
};
}
return toBeNullish;
};