Add benchmark for quick select algorithm evaluation. (#255)
[poolifier.git] / benchmarks / internal / cluster / dynamic.js
index 7ad9dd282d5e27a7afcdcd10e9a0d4c860e4e75c..6838e07a9cad0e882f62c68d8d890f5ec4a003ea 100644 (file)
@@ -2,7 +2,7 @@ const {
   DynamicClusterPool,
   WorkerChoiceStrategies
 } = require('../../../lib/index')
-const { runTest } = require('../benchmark-utils')
+const { runPoolifierTest } = require('../benchmark-utils')
 
 const size = 30
 
@@ -22,13 +22,13 @@ const dynamicPoolLessRecentlyUsed = new DynamicClusterPool(
 async function dynamicClusterTest (
   { tasks, workerData } = { tasks: 1, workerData: { proof: 'ok' } }
 ) {
-  return runTest(dynamicPool, { tasks, workerData })
+  return runPoolifierTest(dynamicPool, { tasks, workerData })
 }
 
 async function dynamicClusterTestLessRecentlyUsed (
   { tasks, workerData } = { tasks: 1, workerData: { proof: 'ok' } }
 ) {
-  return runTest(dynamicPoolLessRecentlyUsed, { tasks, workerData })
+  return runPoolifierTest(dynamicPoolLessRecentlyUsed, { tasks, workerData })
 }
 
 module.exports = {