build(deps-dev): bump @types/node
[poolifier.git] / tests / worker-files / thread / longRunningWorkerSoftBehavior.mjs
CommitLineData
b2fd3f4a
JB
1import { ThreadWorker } from '../../../lib/index.js'
2import { sleepTaskFunction } from '../../test-utils.js'
3
4/**
5 *
6 * @param data
7 */
8async function sleep (data) {
9 return sleepTaskFunction(data, 50000)
10}
11
12export default new ThreadWorker(sleep, {
13 maxInactiveTime: 500
14})