Factor out some UTs code in test-utils.js
[poolifier.git] / tests / worker-files / cluster / asyncErrorWorker.js
CommitLineData
325f50bc 1'use strict'
1a81f8af 2const { ClusterWorker, KillBehaviors } = require('../../../lib/index')
15d56315 3const TestUtils = require('../../test-utils')
325f50bc
S
4
5async function error (data) {
15d56315
JB
6 return TestUtils.workerSleepFunction(
7 data,
8 2000,
9 true,
10 'Error Message from ClusterWorker:async'
11 )
325f50bc
S
12}
13
14module.exports = new ClusterWorker(error, {
15 maxInactiveTime: 500,
4c35177b 16 async: true,
1a81f8af 17 killBehavior: KillBehaviors.HARD
325f50bc 18})