chore: migrate to eslint 9
[poolifier.git] / tests / worker-files / thread / testWorker.mjs
index 8a74ae3a150111858ccdaf33b2e80f824b36fdf4..67959837807c1e89aa5f7ac27b112cdb9832b318 100644 (file)
@@ -1,6 +1,6 @@
 import { KillBehaviors, ThreadWorker } from '../../../lib/index.cjs'
-import { executeTaskFunction } from '../../test-utils.cjs'
 import { TaskFunctions } from '../../test-types.cjs'
+import { executeTaskFunction } from '../../test-utils.cjs'
 
 /**
  *
@@ -15,5 +15,5 @@ function test (data) {
 
 export default new ThreadWorker(test, {
   killBehavior: KillBehaviors.HARD,
-  maxInactiveTime: 500
+  maxInactiveTime: 500,
 })