run the hash benchmark 10 times

This commit is contained in:
Brian Gough 2021-05-12 16:22:59 +01:00
parent 7b6434ef81
commit cbeba4af00

View file

@ -66,6 +66,13 @@ files.forEach((file) => {
})
})
async.series(jobs, () => {
async.timesSeries(
10,
(n, cb) => {
console.log('run', n)
async.series(jobs, cb)
},
() => {
console.log('DONE')
})
}
)