Switch to push-protected GH action for typedoc usage
[poolifier.git] / tests / pools / thread / fixed.test.js
index a0fd08c8038d9455dabe67b0891d7907b93d98d5..116a17da8640bc97a01715970137817dca078077 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