Merge dependabot/npm_and_yarn/typescript-5.4.5 into combined-prs-branch
[poolifier.git] / benchmarks / internal / thread-worker.mjs
index b0994e77bd1af7183f98559481e43fdaf7ec92bb..232881b52e77dfbe1669f0d27fe62f059206a8a6 100644 (file)
@@ -1,11 +1,12 @@
 import { isMainThread } from 'node:worker_threads'
+
 import { ThreadWorker } from '../../lib/index.mjs'
-import { executeTaskFunction } from '../benchmarks-utils.js'
-import { TaskFunctions } from '../benchmarks-types.js'
+import { TaskFunctions } from '../benchmarks-types.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 &&