Switch to push-protected GH action for typedoc usage
[poolifier.git] / tests / pools / cluster / fixed.test.js
index e00e5fa331d7231d0cacd862c22adeb29c6c9f66..b0e39c308ae6b3d5b0c45396fde375f1c9605143 100644 (file)
@@ -49,14 +49,6 @@ describe('Fixed cluster pool test suite', () => {
     await emptyPool.destroy()
   })
 
-  it('Choose worker round robin test', async () => {
-    const results = new Set()
-    for (let i = 0; i < numberOfWorkers; i++) {
-      results.add(pool.chooseWorker().id)
-    }
-    expect(results.size).toBe(numberOfWorkers)
-  })
-
   it('Verify that the function is executed in a worker cluster', async () => {
     let result = await pool.execute({
       function: WorkerFunctions.fibonacci