Tests: be more strict on number expectation
[poolifier.git] / benchmarks / versus-external-pools / fixed-piscina.js
... / ...
CommitLineData
1// IMPORT LIBRARIES
2const Piscina = require('piscina')
3// FINISH IMPORT LIBRARIES
4const size = Number(process.env.POOL_SIZE)
5const iterations = Number(process.env.NUM_ITERATIONS)
6const data = {
7 test: 'MYBENCH',
8 taskType: process.env['TASK_TYPE']
9}
10
11const piscina = new Piscina({
12 filename: './workers/piscina/function-to-bench-worker.js',
13 minThreads: size,
14 idleTimeout: 60000 // this is the same as poolifier default
15})
16
17async function run () {
18 const promises = []
19 for (let i = 0; i < iterations; i++) {
20 promises.push(piscina.runTask(data))
21 }
22 await Promise.all(promises)
23 process.exit()
24}
25
26run()