X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fthread%2Ffixed.test.js;h=6030866fb70181e0c229baa3a7bbacebc570eeea;hb=7390a9ef93c24472533c600b3c2c645c4f5e2f89;hp=81ef967ec5e0540abdd94a697b642b3e08c69b3e;hpb=8620fb25c8b80fc7ef55d76e19781181571c5502;p=poolifier.git diff --git a/tests/pools/thread/fixed.test.js b/tests/pools/thread/fixed.test.js index 81ef967e..6030866f 100644 --- a/tests/pools/thread/fixed.test.js +++ b/tests/pools/thread/fixed.test.js @@ -74,7 +74,9 @@ describe('Fixed thread pool test suite', () => { for (let i = 0; i < numberOfThreads * 2; i++) { promises.push(pool.execute({ test: 'test' })) } - expect(poolBusy).toBe(numberOfThreads) + // The `busy` event is triggered when the number of submitted tasks at once reach the number of fixed pool workers. + // So in total numberOfThreads + 1 times for a loop submitting up to numberOfThreads * 2 tasks to the fixed pool. + expect(poolBusy).toBe(numberOfThreads + 1) }) it('Verify that is possible to have a worker that return undefined', async () => {