blaze-performance-tester 3.1.19 → 3.1.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js CHANGED
@@ -576,7 +576,9 @@ function exportHtmlDashboard(history, config, verdictReason, semanticReport, res
576
576
  <div style="display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;">
577
577
  <div style="background: #090d16; padding: 1.25rem; border-radius: 6px; border: 1px solid #1e293b; text-align: center;">
578
578
  <div class="card-title" style="color: #94a3b8;">Est. Organic Traffic Loss</div>
579
- <div style="font-size: 2rem; font-weight: bold; color: ${seoMetrics.color};">-${seoMetrics.trafficLoss}%</div>
579
+ <div style="font-size: 2rem; font-weight: bold; color: ${seoMetrics.color};">
580
+ ${seoMetrics.trafficLoss > 0 ? "-" : ""}${seoMetrics.trafficLoss}%
581
+ </div>
580
582
  <div style="font-size: 0.8rem; color: #64748b; margin-top: 0.25rem;">compared to 200ms sweet-spot</div>
581
583
  </div>
582
584
  <div style="background: #090d16; padding: 1.25rem; border-radius: 6px; border: 1px solid #1e293b;">
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "blaze-performance-tester",
3
- "version": "3.1.19",
3
+ "version": "3.1.20",
4
4
  "description": "A high-performance, multi-threaded load testing engine built with Rust and QuickJS.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",