From 9b847f1ecf5b8b764794824a5dfc50569c28ff6d Mon Sep 17 00:00:00 2001 From: Adam Raine <6752989+adamraine@users.noreply.github.com> Date: Tue, 29 Oct 2024 15:21:11 -0700 Subject: [PATCH] clients(lr): set CPU throttling based on benchmark (#16226) --- core/config/lr-mobile-config.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/config/lr-mobile-config.js b/core/config/lr-mobile-config.js index 2ded18786908..973ab77a08e4 100644 --- a/core/config/lr-mobile-config.js +++ b/core/config/lr-mobile-config.js @@ -10,6 +10,11 @@ const config = { settings: { maxWaitForFcp: 15 * 1000, maxWaitForLoad: 35 * 1000, + throttling: { + // Determined using PSI CPU benchmark median and + // https://lighthouse-cpu-throttling-calculator.vercel.app/ + cpuSlowdownMultiplier: 1.5, + }, skipAudits: [ // Skip the h2 audit so it doesn't lie to us. See https://github.com/GoogleChrome/lighthouse/issues/6539 'uses-http2',