diff --git a/lighthouse-core/config/config.js b/lighthouse-core/config/config.js index 8b1bfbd42aa1..ba7d42b74e08 100644 --- a/lighthouse-core/config/config.js +++ b/lighthouse-core/config/config.js @@ -540,6 +540,8 @@ class Config { }).filter(pass => { // remove any passes lacking concrete gatherers, unless they are dependent on the trace if (pass.recordTrace) return true; + // Always keep defaultPass + if (pass.passName === 'defaultPass') return true; return pass.gatherers.length > 0; }); return filteredPasses;