build(deps-dev): apply updates
[e-mobility-charging-stations-simulator.git] / test / utils / Utils.test.ts
index e3b8cc3ee9be9a32155574e7a5f54a3b4c2b5503..4677fcdaa337c9a736d5b0e9df326eaf09b8cf11 100644 (file)
@@ -360,8 +360,6 @@ describe('Utils test suite', () => {
   it('Verify isEmptyObject()', () => {
     expect(isEmptyObject({})).toBe(true);
     expect(isEmptyObject({ 1: 1, 2: 2 })).toBe(false);
-    expect(isEmptyObject(undefined)).toBe(false);
-    expect(isEmptyObject(null)).toBe(false);
     expect(isEmptyObject(new Map())).toBe(false);
     expect(isEmptyObject(new Set())).toBe(false);
     expect(isEmptyObject(new WeakMap())).toBe(false);