perf: switch from lodash to rambda
[e-mobility-charging-stations-simulator.git] / tests / utils / Utils.test.ts
index 6db4e36472b7d0905f731b41ff32061fce2e136c..7bee08ac625850cb73f40819d8467f3c176e8b6e 100644 (file)
@@ -345,9 +345,6 @@ await describe('Utils test suite', async () => {
     expect(clone(map)).toStrictEqual({})
     const set = new Set(['1'])
     expect(clone(set)).toStrictEqual({})
-    // The URL object seems to have not enumerable properties
-    const url = new URL('https://domain.tld')
-    expect(clone(url)).toStrictEqual({})
     const weakMap = new WeakMap([[{ 1: 1 }, { 2: 2 }]])
     expect(clone(weakMap)).toStrictEqual({})
     const weakSet = new WeakSet([{ 1: 1 }, { 2: 2 }])