X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=tests%2Fpools%2Fthread%2Ffixed.test.js;h=a42b5d37ede902bd5c6a490ce7ff832e6025d1fc;hb=aee467366d8c393b79e7af82c6a7ab12338ee64e;hp=fd9ce5dfe799a7f8e707bcdb843f875dfe0fbd5a;hpb=36b5e78f5d0a98040273f48b409e643fe5902913;p=poolifier.git diff --git a/tests/pools/thread/fixed.test.js b/tests/pools/thread/fixed.test.js index fd9ce5df..a42b5d37 100644 --- a/tests/pools/thread/fixed.test.js +++ b/tests/pools/thread/fixed.test.js @@ -1,5 +1,5 @@ const { expect } = require('expect') -const { FixedThreadPool } = require('../../../lib/index') +const { FixedThreadPool, PoolEvents } = require('../../../lib/index') const { WorkerFunctions } = require('../../test-types') const TestUtils = require('../../test-utils') @@ -65,9 +65,9 @@ describe('Fixed thread pool test suite', () => { expect(result).toBe(false) }) - it('Verify that busy event is emitted', async () => { + it("Verify that 'busy' event is emitted", async () => { let poolBusy = 0 - pool.emitter.on('busy', () => ++poolBusy) + pool.emitter.on(PoolEvents.busy, () => ++poolBusy) for (let i = 0; i < numberOfThreads * 2; i++) { pool.execute() }