X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fthread%2Fdynamic.test.js;h=ae78649f91d2851d91163d2ebf6f65e2c084c468;hb=b312b1b0c3e442e9feab337f5ffc89c29deee304;hp=9cba566f916abccdd380b38a0795a5502992a933;hpb=8620fb25c8b80fc7ef55d76e19781181571c5502;p=poolifier.git diff --git a/tests/pools/thread/dynamic.test.js b/tests/pools/thread/dynamic.test.js index 9cba566f..ae78649f 100644 --- a/tests/pools/thread/dynamic.test.js +++ b/tests/pools/thread/dynamic.test.js @@ -1,4 +1,4 @@ -const expect = require('expect') +const { expect } = require('expect') const { DynamicThreadPool } = require('../../../lib/index') const TestUtils = require('../../test-utils') const min = 1 @@ -27,6 +27,8 @@ describe('Dynamic thread pool test suite', () => { promises.push(pool.execute({ test: 'test' })) } expect(pool.workers.length).toBe(max) + // The `busy` event is triggered when the number of submitted tasks at once reach the max number of workers in the dynamic pool. + // So in total numberOfWorkers + 1 times for a loop submitting up to numberOfWorkers * 2 tasks to the dynamic pool. expect(poolBusy).toBe(max + 1) const res = await TestUtils.waitExits(pool, max - min) expect(res).toBe(max - min)