Report some code cleanups from work in progress PR
[poolifier.git] / tests / pools / thread / dynamic.test.js
index ae78649f91d2851d91163d2ebf6f65e2c084c468..3ae35ac937f2adcdf6ff2f1f4baf83f70dd35548 100644 (file)
@@ -30,8 +30,8 @@ describe('Dynamic thread pool test suite', () => {
     // The `busy` event is triggered when the number of submitted tasks at once reach the max number of workers in the dynamic pool.
     // So in total numberOfWorkers + 1 times for a loop submitting up to numberOfWorkers * 2 tasks to the dynamic pool.
     expect(poolBusy).toBe(max + 1)
-    const res = await TestUtils.waitExits(pool, max - min)
-    expect(res).toBe(max - min)
+    const numberOfExitEvents = await TestUtils.waitExits(pool, max - min)
+    expect(numberOfExitEvents).toBe(max - min)
   })
 
   it('Verify scale thread up and down is working', async () => {