pool.emitter.on(PoolEvents.full, () => poolFull++)
pool.emitter.on(PoolEvents.busy, () => poolBusy++)
-const start = Date.now()
+const start = performance.now()
const iterations = 1000
for (let i = 1; i <= iterations; i++) {
pool
.then(() => {
resolved++
if (resolved === iterations) {
- console.log('Time taken is ' + (Date.now() - start))
+ console.log('Time taken is ' + (performance.now() - start))
console.log('The pool was full for ' + poolFull + ' times')
return console.log('The pool was busy for ' + poolBusy + ' times')
}
})
pool.emitter.on(PoolEvents.busy, () => poolBusy++)
-const start = Date.now()
+const start = performance.now()
const iterations = 1000
for (let i = 1; i <= iterations; i++) {
pool
.then(() => {
resolved++
if (resolved === iterations) {
- console.log('Time taken is ' + (Date.now() - start))
+ console.log('Time taken is ' + (performance.now() - start))
return console.log('The pool was busy for ' + poolBusy + ' times')
}
return null
it('Verify that async function is working properly', async () => {
const data = { f: 10 }
- const startTime = Date.now()
+ const startTime = performance.now()
const result = await asyncPool.execute(data)
- const usedTime = Date.now() - startTime
+ const usedTime = performance.now() - startTime
expect(result).toStrictEqual(data)
expect(usedTime).toBeGreaterThanOrEqual(2000)
})
it('Verify that async function is working properly', async () => {
const data = { f: 10 }
- const startTime = Date.now()
+ const startTime = performance.now()
const result = await asyncPool.execute(data)
- const usedTime = Date.now() - startTime
+ const usedTime = performance.now() - startTime
expect(result).toStrictEqual(data)
expect(usedTime).toBeGreaterThanOrEqual(2000)
})