Enchance benchmarking code
[poolifier.git] / tests / worker-files / thread / testWorker.js
1 'use strict'
2 const { ThreadWorker, KillBehaviors } = require('../../../lib/index')
3 const { isMainThread } = require('worker_threads')
4 const TestUtils = require('../../test-utils')
5 const { WorkerFunctions } = require('../../test-types')
6
7 function test (data) {
8 data = data || {}
9 data.function = data.function || WorkerFunctions.jsonIntegerSerialization
10 TestUtils.executeWorkerFunction(data)
11 return isMainThread
12 }
13
14 module.exports = new ThreadWorker(test, {
15 maxInactiveTime: 500,
16 killBehavior: KillBehaviors.HARD
17 })