X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=inline;f=tests%2Fpools%2Fcluster%2Ffixed.test.js;fp=tests%2Fpools%2Fcluster%2Ffixed.test.js;h=9ee37ad83cb8981c01eae320c1968ecc025762f6;hb=041dc05b2a95b36db72525072ba54c4c58ffcf0e;hp=af3bc452ed64b5303f36cf9eb0d93e2d01f160f4;hpb=facb41d7d33bd6c11970da5e946c51347824fd54;p=poolifier.git diff --git a/tests/pools/cluster/fixed.test.js b/tests/pools/cluster/fixed.test.js index af3bc452..9ee37ad8 100644 --- a/tests/pools/cluster/fixed.test.js +++ b/tests/pools/cluster/fixed.test.js @@ -11,7 +11,7 @@ describe('Fixed cluster pool test suite', () => { numberOfWorkers, './tests/worker-files/cluster/testWorker.js', { - errorHandler: (e) => console.error(e) + errorHandler: e => console.error(e) } ) const queuePool = new FixedClusterPool( @@ -22,7 +22,7 @@ describe('Fixed cluster pool test suite', () => { tasksQueueOptions: { concurrency: tasksConcurrency }, - errorHandler: (e) => console.error(e) + errorHandler: e => console.error(e) } ) const emptyPool = new FixedClusterPool( @@ -38,14 +38,14 @@ describe('Fixed cluster pool test suite', () => { numberOfWorkers, './tests/worker-files/cluster/errorWorker.js', { - errorHandler: (e) => console.error(e) + errorHandler: e => console.error(e) } ) const asyncErrorPool = new FixedClusterPool( numberOfWorkers, './tests/worker-files/cluster/asyncErrorWorker.js', { - errorHandler: (e) => console.error(e) + errorHandler: e => console.error(e) } ) const asyncPool = new FixedClusterPool( @@ -84,7 +84,7 @@ describe('Fixed cluster pool test suite', () => { numberOfWorkers, './tests/worker-files/cluster/testWorker.js', { - errorHandler: (e) => console.error(e) + errorHandler: e => console.error(e) } ) let poolReady = 0 @@ -180,7 +180,7 @@ describe('Fixed cluster pool test suite', () => { it('Verify that error handling is working properly:sync', async () => { const data = { f: 10 } let taskError - errorPool.emitter.on(PoolEvents.taskError, (e) => { + errorPool.emitter.on(PoolEvents.taskError, e => { taskError = e }) let inError @@ -199,7 +199,7 @@ describe('Fixed cluster pool test suite', () => { }) expect( errorPool.workerNodes.some( - (workerNode) => workerNode.usage.tasks.failed === 1 + workerNode => workerNode.usage.tasks.failed === 1 ) ).toBe(true) }) @@ -207,7 +207,7 @@ describe('Fixed cluster pool test suite', () => { it('Verify that error handling is working properly:async', async () => { const data = { f: 10 } let taskError - asyncErrorPool.emitter.on(PoolEvents.taskError, (e) => { + asyncErrorPool.emitter.on(PoolEvents.taskError, e => { taskError = e }) let inError @@ -226,7 +226,7 @@ describe('Fixed cluster pool test suite', () => { }) expect( asyncErrorPool.workerNodes.some( - (workerNode) => workerNode.usage.tasks.failed === 1 + workerNode => workerNode.usage.tasks.failed === 1 ) ).toBe(true) })