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