From 798bc65088b7ed6c5241dcbe5781d6a449e5455b Mon Sep 17 00:00:00 2001 From: James Ives Date: Sat, 11 Jan 2020 20:26:09 -0500 Subject: [PATCH] Update util.test.ts --- __tests__/util.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/__tests__/util.test.ts b/__tests__/util.test.ts index a3763e77..cf304bd5 100644 --- a/__tests__/util.test.ts +++ b/__tests__/util.test.ts @@ -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;