mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
run the hash benchmark 10 times
This commit is contained in:
parent
7b6434ef81
commit
cbeba4af00
1 changed files with 10 additions and 3 deletions
|
@ -66,6 +66,13 @@ files.forEach((file) => {
|
|||
})
|
||||
})
|
||||
|
||||
async.series(jobs, () => {
|
||||
console.log('DONE')
|
||||
})
|
||||
async.timesSeries(
|
||||
10,
|
||||
(n, cb) => {
|
||||
console.log('run', n)
|
||||
async.series(jobs, cb)
|
||||
},
|
||||
() => {
|
||||
console.log('DONE')
|
||||
}
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue