X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fthread%2Ffixed.test.js;h=81ef967ec5e0540abdd94a697b642b3e08c69b3e;hb=8620fb25c8b80fc7ef55d76e19781181571c5502;hp=3401fde316130e4330f111fb0c421e2ad4833d4f;hpb=7c0ba92006a5c188738ffc5ff642c51f172df3d6;p=poolifier.git diff --git a/tests/pools/thread/fixed.test.js b/tests/pools/thread/fixed.test.js index 3401fde3..81ef967e 100644 --- a/tests/pools/thread/fixed.test.js +++ b/tests/pools/thread/fixed.test.js @@ -22,16 +22,14 @@ const errorPool = new FixedThreadPool( 1, './tests/worker-files/thread/errorWorker.js', { - errorHandler: e => console.error(e), - onlineHandler: () => console.log('worker is online') + errorHandler: e => console.error(e) } ) const asyncErrorPool = new FixedThreadPool( 1, './tests/worker-files/thread/asyncErrorWorker.js', { - errorHandler: e => console.error(e), - onlineHandler: () => console.log('worker is online') + errorHandler: e => console.error(e) } ) const asyncPool = new FixedThreadPool( @@ -76,7 +74,7 @@ describe('Fixed thread pool test suite', () => { for (let i = 0; i < numberOfThreads * 2; i++) { promises.push(pool.execute({ test: 'test' })) } - expect(poolBusy).toEqual(numberOfThreads) + expect(poolBusy).toBe(numberOfThreads) }) it('Verify that is possible to have a worker that return undefined', async () => { @@ -102,7 +100,7 @@ describe('Fixed thread pool test suite', () => { expect(inError).toBeDefined() expect(inError).toBeInstanceOf(Error) expect(inError.message).toBeDefined() - expect(typeof inError.message === 'string').toEqual(true) + expect(typeof inError.message === 'string').toBe(true) }) it('Verify that error handling is working properly:async', async () => { @@ -116,7 +114,7 @@ describe('Fixed thread pool test suite', () => { expect(inError).toBeDefined() expect(inError).toBeInstanceOf(Error) expect(inError.message).toBeDefined() - expect(typeof inError.message === 'string').toEqual(true) + expect(typeof inError.message === 'string').toBe(true) }) it('Verify that async function is working properly', async () => {