X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fthread%2Fdynamic.test.js;h=9036642f1b00a87bd9c8eeebb9a72ffa9abd81a0;hb=4a2991331aa9ab339cf110856e8ce4752a0b3400;hp=fad9dab8cbe3440e26a1f8e97b07b300ed662d04;hpb=8cbb82eb0f90b5c816bb0216e8509540e4dbb54a;p=poolifier.git diff --git a/tests/pools/thread/dynamic.test.js b/tests/pools/thread/dynamic.test.js index fad9dab8..9036642f 100644 --- a/tests/pools/thread/dynamic.test.js +++ b/tests/pools/thread/dynamic.test.js @@ -28,7 +28,7 @@ describe('Dynamic thread pool test suite', () => { it('Verify that new workers are created when required, max size is not exceeded and that after a while new workers will die', async () => { let poolBusy = 0 - pool.emitter.on('busy', () => poolBusy++) + pool.emitter.on('busy', () => ++poolBusy) for (let i = 0; i < max * 2; i++) { pool.execute() }