feat: add 'full' event on dynamic pool emitter
[poolifier.git] / tests / pools / thread / dynamic.test.js
index fad9dab8cbe3440e26a1f8e97b07b300ed662d04..d8c68e90c51100886bc8fe83ebfba8ec2ef094f1 100644 (file)
@@ -28,7 +28,7 @@ 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 () => {
     let poolBusy = 0
-    pool.emitter.on('busy', () => poolBusy++)
+    pool.emitter.on('busy', () => ++poolBusy)
     for (let i = 0; i < max * 2; i++) {
       pool.execute()
     }
@@ -121,7 +121,7 @@ describe('Dynamic thread pool test suite', () => {
     }
     expect(longRunningPool.workers.length).toBe(max)
     await TestUtils.sleep(1500)
-    // Here we expect the workers to be at the max size since that the task is still running
+    // Here we expect the workers to be at the max size since the task is still running
     expect(longRunningPool.workers.length).toBe(max)
     // We need to clean up the resources after our test
     await longRunningPool.destroy()