Skip to content
Merged
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions JetStreamDriver.js
Original file line number Diff line number Diff line change
Expand Up @@ -332,17 +332,17 @@ class Driver {
console.log("Total:");
for (let [category, scores] of categoryScores) {
console.log(
shellFriendlyLabel(`${category}-Score`),
shellFriendlyLabel(`Total ${category}-Score`),
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this really a total though? I feel like "Geomean" would be a more accurate label. I would assume this is the sum of all score in this category

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah this is for the overall report, I see now. Ignore me.

shellFriendlyScore(geomeanScore(scores)));
}
for (let [category, times] of categoryTimes) {
console.log(
shellFriendlyLabel(`${category}-Time`),
shellFriendlyLabel(`Total ${category}-Time`),
shellFriendlyDuration(geomeanScore(times)));
}
console.log("");
console.log(shellFriendlyLabel("Total-Score"), shellFriendlyScore(totalScore));
console.log(shellFriendlyLabel("Total-Time"), shellFriendlyDuration(totalTime));
console.log(shellFriendlyLabel("Total Score"), shellFriendlyScore(totalScore));
console.log(shellFriendlyLabel("Total Time"), shellFriendlyDuration(totalTime));
console.log("");
}

Expand Down
Loading