From 82c4e9f7c18656e1a451ac4c1cf34836a6027999 Mon Sep 17 00:00:00 2001 From: DeNNiiInc Date: Sat, 27 Dec 2025 23:50:50 +1100 Subject: [PATCH] Fix Runner: Use correct import for chrome-launcher --- lib/runner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/runner.js b/lib/runner.js index f3dfc6c..d6d7a01 100644 --- a/lib/runner.js +++ b/lib/runner.js @@ -11,7 +11,7 @@ const path = require('path'); async function runTest(url, options = {}) { // Dynamically import dependencies (ESM) const { default: lighthouse } = await import('lighthouse'); - const { default: chromeLauncher } = await import('chrome-launcher'); + const chromeLauncher = await import('chrome-launcher'); const { v4: uuidv4 } = await import('uuid'); const isMobile = options.isMobile ?? true; // Default to mobile