chore: migrate to eslint 9
[poolifier.git] / tests / worker-files / cluster / emptyWorker.cjs
1 'use strict'
2 const { ClusterWorker, KillBehaviors } = require('../../../lib/index.cjs')
3
4 /**
5 *
6 */
7 function test () {}
8
9 module.exports = new ClusterWorker(test, {
10 killBehavior: KillBehaviors.HARD,
11 maxInactiveTime: 500,
12 })