Skip to content

Commit

Permalink
[DI] Reduce time it takes to run benchmarks (#5100)
Browse files Browse the repository at this point in the history
  • Loading branch information
watson authored Jan 13, 2025
1 parent 684ead6 commit 587957e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion benchmark/sirun/debugger/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ setTimeout(doSomeWork, 250)
function doSomeWork (arg1 = 1, arg2 = 2) {
const data = getSomeData()
data.n = n
if (++n <= 500) {
if (++n <= 250) {
setTimeout(doSomeWork, 1)
}
}
Expand Down

0 comments on commit 587957e

Please sign in to comment.