new Date().getTime() -> Date.now()
authorJérôme Benoit <jerome.benoit@sap.com>
Mon, 10 Oct 2022 19:57:38 +0000 (21:57 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Mon, 10 Oct 2022 19:57:38 +0000 (21:57 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
tests/pools/cluster/fixed.test.js
tests/pools/thread/fixed.test.js

index b1005595f6d7e2f43fc7a917a3c5f009a7b1cca1..e958374139bc560167bc61c420a278394283a7ef 100644 (file)
@@ -124,9 +124,9 @@ describe('Fixed cluster pool test suite', () => {
 
   it('Verify that async function is working properly', async () => {
     const data = { f: 10 }
-    const startTime = new Date().getTime()
+    const startTime = Date.now()
     const result = await asyncPool.execute(data)
-    const usedTime = new Date().getTime() - startTime
+    const usedTime = Date.now() - startTime
     expect(result).toStrictEqual(data)
     expect(usedTime).toBeGreaterThanOrEqual(2000)
   })
index 5bbc8e0e1bc918bf222907e4c76dad553424f9bc..c7abad00834c0a6cfd3c96bf4ae06b731d82e2f3 100644 (file)
@@ -128,9 +128,9 @@ describe('Fixed thread pool test suite', () => {
 
   it('Verify that async function is working properly', async () => {
     const data = { f: 10 }
-    const startTime = new Date().getTime()
+    const startTime = Date.now()
     const result = await asyncPool.execute(data)
-    const usedTime = new Date().getTime() - startTime
+    const usedTime = Date.now() - startTime
     expect(result).toStrictEqual(data)
     expect(usedTime).toBeGreaterThanOrEqual(2000)
   })