Update util.test.ts

This commit is contained in:
James Ives 2020-01-11 20:26:09 -05:00
parent 41de4b88ee
commit 798bc65088

View File

@ -6,6 +6,7 @@ describe('util', () => {
it('should return true if the value is null', async() => {
const value = null;
expect(isNullOrUndefined(value)).toBeTruthy()
});
it('should return true if the value is undefined', async() => {
const value = undefined;