Skip to content

Commit 587957e

Browse files
authored
[DI] Reduce time it takes to run benchmarks (#5100)
1 parent 684ead6 commit 587957e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • benchmark/sirun/debugger

benchmark/sirun/debugger/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ setTimeout(doSomeWork, 250)
1414
function doSomeWork (arg1 = 1, arg2 = 2) {
1515
const data = getSomeData()
1616
data.n = n
17-
if (++n <= 500) {
17+
if (++n <= 250) {
1818
setTimeout(doSomeWork, 1)
1919
}
2020
}

0 commit comments

Comments
 (0)