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