fix: fix pool statuses semantic
[poolifier.git] / tests / pools / cluster / fixed.test.js
index bfc0a7246fa1d3a03d12786e52ff6504685bb024..f71529a911949f285d0c54ebd8be5b27d67d0e3d 100644 (file)
@@ -1,7 +1,7 @@
 const { expect } = require('expect')
 const { FixedClusterPool, PoolEvents } = require('../../../lib')
 const { WorkerFunctions } = require('../../test-types')
-const { waitWorkerEvents } = require('../../test-utils')
+const { waitPoolEvents, waitWorkerEvents } = require('../../test-utils')
 
 describe('Fixed cluster pool test suite', () => {
   const numberOfWorkers = 6
@@ -77,7 +77,7 @@ describe('Fixed cluster pool test suite', () => {
     expect(result).toStrictEqual({ ok: 1 })
   })
 
-  it.skip("Verify that 'ready' event is emitted", async () => {
+  it("Verify that 'ready' event is emitted", async () => {
     const pool1 = new FixedClusterPool(
       numberOfWorkers,
       './tests/worker-files/cluster/testWorker.js',
@@ -85,17 +85,13 @@ describe('Fixed cluster pool test suite', () => {
         errorHandler: e => console.error(e)
       }
     )
-    let poolInfo
     let poolReady = 0
-    pool1.emitter.on(PoolEvents.ready, info => {
-      ++poolReady
-      poolInfo = info
-    })
+    pool1.emitter.on(PoolEvents.ready, () => ++poolReady)
+    await waitPoolEvents(pool1, PoolEvents.ready, 1)
     expect(poolReady).toBe(1)
-    expect(poolInfo).toBeDefined()
   })
 
-  it("Verify that 'busy' event is emitted", async () => {
+  it("Verify that 'busy' event is emitted", () => {
     let poolBusy = 0
     pool.emitter.on(PoolEvents.busy, () => ++poolBusy)
     for (let i = 0; i < numberOfWorkers * 2; i++) {