From 7865252fa22b005f13b330bff6265d3ebe296815 Mon Sep 17 00:00:00 2001 From: Malin Date: Tue, 7 Apr 2026 11:29:41 +0200 Subject: [PATCH] fix: add --plugins.add analysisstorer to sitespeed.io args analysisstorer is not in the default plugin set, so pageSummary JSON files were never written. This plugin writes all message data to disk (browsertime.pageSummary.json, coach.pageSummary.json, etc.) which our parser reads to extract metrics. Co-Authored-By: Claude Sonnet 4.6 --- runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runner.js b/runner.js index 7f55154..0cdc530 100644 --- a/runner.js +++ b/runner.js @@ -21,7 +21,7 @@ export function runTest(job, onLine) { '--browser', job.browser, '-n', String(job.runs), '--outputFolder', outputFolder, - '--json', + '--plugins.add', 'analysisstorer', // not in default set — needed to write pageSummary JSON '--sustainable.enable', '--sustainable.useGreenWebHostingAPI', '--axe.enable',