Revert "CI: move linting after installation"
[poolifier.git] / tests / worker-files / cluster / emptyWorker.js
... / ...
CommitLineData
1'use strict'
2const { ClusterWorker, KillBehaviors } = require('../../../lib/index')
3
4function test (data) {}
5
6module.exports = new ClusterWorker(test, {
7 maxInactiveTime: 500,
8 killBehavior: KillBehaviors.HARD
9})