From d4ce23b19a2e2fc5ed4901b07ee4a29d94985805 Mon Sep 17 00:00:00 2001 From: DeNNiiInc Date: Sun, 28 Dec 2025 09:42:24 +1100 Subject: [PATCH] Restore filmstrip feature, fix server crash, and rename Grade label --- index.html | 2 +- lib/runner.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 2fda5e5..76ba948 100644 --- a/index.html +++ b/index.html @@ -109,7 +109,7 @@
-

GTmetrix Grade

+

Grade

- diff --git a/lib/runner.js b/lib/runner.js index f1adc48..43f3c1b 100644 --- a/lib/runner.js +++ b/lib/runner.js @@ -147,6 +147,9 @@ async function _executeTest(url, options) { // Prepare JSON Summary const lhr = runnerResult.lhr; + + + const summary = { id: testId, url: lhr.finalUrl, @@ -166,7 +169,6 @@ async function _executeTest(url, options) { isMobile: isMobile, filmstrip: captureFilmstrip ? (lhr.audits['screenshot-thumbnails']?.details?.items || []) : [] }; - }; // Save JSON Summary const jsonPath = path.join(reportDir, `${testId}.json`);