test: fix run
authorJérôme Benoit <jerome.benoit@sap.com>
Wed, 31 May 2023 12:51:08 +0000 (14:51 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Wed, 31 May 2023 12:51:08 +0000 (14:51 +0200)
Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
tests/pools/abstract/abstract-pool.test.js

index 1c0146252593604c5b74269c908a86674aae2f79..05abdc69d7c31369f42db85505531aa77022f9d3 100644 (file)
@@ -426,7 +426,7 @@ describe('Abstract pool test suite', () => {
     let poolFull = 0
     pool.emitter.on(PoolEvents.full, () => ++poolFull)
     for (let i = 0; i < numberOfWorkers * 2; i++) {
-      promises.push(pool.execute())
+      promises.add(pool.execute())
     }
     await Promise.all(promises)
     // The `full` event is triggered when the number of submitted tasks at once reach the max number of workers in the dynamic pool.
@@ -444,7 +444,7 @@ describe('Abstract pool test suite', () => {
     let poolBusy = 0
     pool.emitter.on(PoolEvents.busy, () => ++poolBusy)
     for (let i = 0; i < numberOfWorkers * 2; i++) {
-      promises.push(pool.execute())
+      promises.add(pool.execute())
     }
     await Promise.all(promises)
     // The `busy` event is triggered when the number of submitted tasks at once reach the number of fixed pool workers.