chore: v2.6.29
[poolifier.git] / tests / worker-files / thread / asyncWorker.js
index 6508d6dac5d313bcd41b458643fa1a7efd3d1124..2b834b87fd33d9002bd664707159581824f90301 100644 (file)
@@ -1,13 +1,12 @@
 'use strict'
-const { ThreadWorker, KillBehaviors } = require('../../../lib/index')
-const TestUtils = require('../../test-utils')
+const { ThreadWorker, KillBehaviors } = require('../../../lib')
+const { sleepTaskFunction } = require('../../test-utils')
 
 async function sleep (data) {
-  return TestUtils.workerSleepFunction(data, 2000)
+  return sleepTaskFunction(data, 2000)
 }
 
 module.exports = new ThreadWorker(sleep, {
   maxInactiveTime: 500,
-  async: true,
   killBehavior: KillBehaviors.HARD
 })