X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fthread%2Ffixed.test.js;h=fd9ce5dfe799a7f8e707bcdb843f875dfe0fbd5a;hb=refs%2Ftags%2Fv2.4.3;hp=a0fd08c8038d9455dabe67b0891d7907b93d98d5;hpb=8cbb82eb0f90b5c816bb0216e8509540e4dbb54a;p=poolifier.git diff --git a/tests/pools/thread/fixed.test.js b/tests/pools/thread/fixed.test.js index a0fd08c8..fd9ce5df 100644 --- a/tests/pools/thread/fixed.test.js +++ b/tests/pools/thread/fixed.test.js @@ -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() }