lighthouse 11.5.0-dev.20240219 → 11.5.0-dev.20240220

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -446,6 +446,21 @@ async function waitForFullyLoaded(session, networkMonitor, options) {
446
446
  // CPU listener. Resolves when the CPU has been idle for cpuQuietThresholdMs after network idle.
447
447
  let resolveOnCPUIdle = waitForNothing();
448
448
 
449
+ if (log.isVerbose()) {
450
+ resolveOnFcp.promise.then(() => {
451
+ log.verbose('waitFor', 'resolveOnFcp fired');
452
+ });
453
+ resolveOnLoadEvent.promise.then(() => {
454
+ log.verbose('waitFor', 'resolveOnLoadEvent fired');
455
+ });
456
+ resolveOnNetworkIdle.promise.then(() => {
457
+ log.verbose('waitFor', 'resolveOnNetworkIdle fired');
458
+ });
459
+ resolveOnCriticalNetworkIdle.promise.then(() => {
460
+ log.verbose('waitFor', 'resolveOnCriticalNetworkIdle fired');
461
+ });
462
+ }
463
+
449
464
  // Wait for all initial load promises. Resolves on cleanup function the clears load
450
465
  // timeout timer.
451
466
  /** @type {Promise<() => Promise<{timedOut: boolean}>>} */
@@ -61,7 +61,8 @@ class Trace extends BaseGatherer {
61
61
 
62
62
  // Not used by Lighthouse (yet) but included for users that want JS samples when looking at
63
63
  // a trace collected by Lighthouse (e.g. "View Trace" workflow in DevTools)
64
- 'disabled-by-default-v8.cpu_profiler',
64
+ // TODO: Re-enable after investigating b/325659693
65
+ // 'disabled-by-default-v8.cpu_profiler',
65
66
  ];
66
67
  }
67
68
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lighthouse",
3
3
  "type": "module",
4
- "version": "11.5.0-dev.20240219",
4
+ "version": "11.5.0-dev.20240220",
5
5
  "description": "Automated auditing, performance metrics, and best practices for the web.",
6
6
  "main": "./core/index.js",
7
7
  "bin": {