Merge branch 'master' of github.com:jerome-benoit/poolifier
[poolifier.git] / tests / pools / thread / dynamic.test.js
index 9cd4e72c57b1098256b9c2f356fcfc0ded6da730..9036642f1b00a87bd9c8eeebb9a72ffa9abd81a0 100644 (file)
@@ -27,11 +27,10 @@ describe('Dynamic thread pool test suite', () => {
   })
 
   it('Verify that new workers are created when required, max size is not exceeded and that after a while new workers will die', async () => {
-    const promises = []
     let poolBusy = 0
-    pool.emitter.on('busy', () => poolBusy++)
+    pool.emitter.on('busy', () => ++poolBusy)
     for (let i = 0; i < max * 2; i++) {
-      promises.push(pool.execute())
+      pool.execute()
     }
     expect(pool.workers.length).toBeLessThanOrEqual(max)
     expect(pool.workers.length).toBeGreaterThan(min)