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