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,19 @@
describe('toBeNullish', function() {
it('passes for null values', function() {
const matcher = jasmineUnderTest.matchers.toBeNullish();
const result = matcher.compare(null);
expect(result.pass).toBe(true);
});
it('passes for undefined values', function() {
const matcher = jasmineUnderTest.matchers.toBeNullish();
const result = matcher.compare(void 0);
expect(result.pass).toBe(true);
});
it('fails when matching defined values', function() {
const matcher = jasmineUnderTest.matchers.toBeNullish();
const result = matcher.compare('foo');
expect(result.pass).toBe(false);
});
});