chore: v2.4.3
[poolifier.git] / tests / pools / thread / fixed.test.js
index a0fd08c8038d9455dabe67b0891d7907b93d98d5..fd9ce5dfe799a7f8e707bcdb843f875dfe0fbd5a 100644 (file)
@@ -49,14 +49,6 @@ describe('Fixed thread pool test suite', () => {
     await emptyPool.destroy()
   })
 
-  it('Choose worker round robin test', async () => {
-    const results = new Set()
-    for (let i = 0; i < numberOfThreads; i++) {
-      results.add(pool.chooseWorker().threadId)
-    }
-    expect(results.size).toBe(numberOfThreads)
-  })
-
   it('Verify that the function is executed in a worker thread', async () => {
     let result = await pool.execute({
       function: WorkerFunctions.fibonacci
@@ -75,7 +67,7 @@ describe('Fixed thread pool test suite', () => {
 
   it('Verify that busy event is emitted', async () => {
     let poolBusy = 0
-    pool.emitter.on('busy', () => poolBusy++)
+    pool.emitter.on('busy', () => ++poolBusy)
     for (let i = 0; i < numberOfThreads * 2; i++) {
       pool.execute()
     }