X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fthread%2Ffixed.test.js;h=a0fd08c8038d9455dabe67b0891d7907b93d98d5;hb=4ce0c32173afaa80991976d39dc741e49d0c62bc;hp=01622f1622c87237e1dc501313ff14ef348cc2dd;hpb=2d2e32c20d55c1b81771659fd81004bd7ca34b73;p=poolifier.git diff --git a/tests/pools/thread/fixed.test.js b/tests/pools/thread/fixed.test.js index 01622f16..a0fd08c8 100644 --- a/tests/pools/thread/fixed.test.js +++ b/tests/pools/thread/fixed.test.js @@ -74,11 +74,10 @@ describe('Fixed thread pool test suite', () => { }) it('Verify that busy event is emitted', async () => { - const promises = [] let poolBusy = 0 pool.emitter.on('busy', () => poolBusy++) for (let i = 0; i < numberOfThreads * 2; i++) { - promises.push(pool.execute()) + pool.execute() } // 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.