Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixes
  • Loading branch information
camillobruni committed Sep 23, 2025
commit 0829c4f4e432df9406220cd1762ae585e1bb4bb4
11 changes: 7 additions & 4 deletions JetStreamDriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function uiFriendlyDuration(time) {


function shellFriendlyLabel(label) {
const namePadding = 30;
const namePadding = 40;
return `${label}:`.padEnd(namePadding);
}

Expand Down Expand Up @@ -1315,11 +1315,14 @@ class DefaultBenchmark extends Benchmark {
}

subTimes() {
return {
const times = {
"First": this.firstIterationTime,
"Worst": this.worstTime,
"Average": this.averageTime,
};
if (this.worstCaseCount)
times["Worst"] = this.worstTime;
if (this.iterations > 1)
times["Average"] = this.averageTime;
return times;
}
}

Expand Down
Loading