Skip to content

Commit

Permalink
Adjust ranges
Browse files Browse the repository at this point in the history
  • Loading branch information
pepicrft committed Jan 3, 2023
1 parent 714d97e commit ae130bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workspace/src/generate-benchmark-report.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ for (const command of Object.keys(benchmark).sort()) {
} else {
const diff = Math.round((benchmark[command] / baselineBenchmark[command] - 1) * 100 * 100) / 100
let icon = '⚪️'
if (diff <= 0) {
if (diff < 8) {
icon = '🟢'
} else if (diff < 10) {
icon = '🟡'
Expand Down

0 comments on commit ae130bf

Please sign in to comment.