Merge dependabot/npm_and_yarn/typescript-5.4.5 into combined-prs-branch
[poolifier.git] / benchmarks / internal / thread-worker.mjs
index 63d6e2defe91085e852e8786d4dac25b926c2422..232881b52e77dfbe1669f0d27fe62f059206a8a6 100644 (file)
@@ -2,11 +2,11 @@ import { isMainThread } from 'node:worker_threads'
 
 import { ThreadWorker } from '../../lib/index.mjs'
 import { TaskFunctions } from '../benchmarks-types.cjs'
-import { executeTaskFunction } from '../benchmarks-utils.cjs'
+import { executeTaskFunction } from '../benchmarks-utils.mjs'
 
 const taskFunction = data => {
   data = data || {}
-  data.function = data.function || TaskFunctions.jsonIntegerSerialization
+  data.function = data.function || TaskFunctions.factorial
   data.debug = data.debug || false
   const res = executeTaskFunction(data)
   data.debug === true &&