Increased test timeouts, we need to look into that as soon as we can
[poolifier.git] / tests / worker / cluster / emptyWorker.js
1 'use strict'
2 const { ClusterWorker, killBehaviorEnumeration } = require('../../../lib/index')
3
4 function test (data) {}
5
6 module.exports = new ClusterWorker(test, {
7 maxInactiveTime: 500,
8 killBehavior: killBehaviorEnumeration.HARD
9 })