X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fthread%2Fdynamic.test.js;h=8702dee8383ad7b5ec5a41dae567bfa8049105e3;hb=fa6f12966fa14931864dcd13596e080d689464b3;hp=5a85f6ae71cdd737b25dae925c813934da19330c;hpb=6db75ad932064c1415ff6f03645929530209a5fe;p=poolifier.git diff --git a/tests/pools/thread/dynamic.test.js b/tests/pools/thread/dynamic.test.js index 5a85f6ae..8702dee8 100644 --- a/tests/pools/thread/dynamic.test.js +++ b/tests/pools/thread/dynamic.test.js @@ -2,18 +2,19 @@ const { expect } = require('expect') const { DynamicThreadPool } = require('../../../lib/index') const WorkerFunctions = require('../../test-types') const TestUtils = require('../../test-utils') -const min = 1 -const max = 3 -const pool = new DynamicThreadPool( - min, - max, - './tests/worker-files/thread/testWorker.js', - { - errorHandler: e => console.error(e) - } -) describe('Dynamic thread pool test suite', () => { + const min = 1 + const max = 3 + const pool = new DynamicThreadPool( + min, + max, + './tests/worker-files/thread/testWorker.js', + { + errorHandler: e => console.error(e) + } + ) + it('Verify that the function is executed in a worker thread', async () => { let result = await pool.execute({ function: WorkerFunctions.fibonacci @@ -72,8 +73,8 @@ describe('Dynamic thread pool test suite', () => { it('Should work even without opts in input', async () => { const pool1 = new DynamicThreadPool( - 1, - 1, + min, + max, './tests/worker-files/thread/testWorker.js' ) const res = await pool1.execute()