From d6d53a459952bd963b1529c118b3b362126bb291 Mon Sep 17 00:00:00 2001 From: Brendan Kenny Date: Mon, 2 Oct 2017 18:36:34 -0700 Subject: [PATCH] update plots-config to use newer quiet parameters --- docs/configuration.md | 2 +- lighthouse-core/config/plots-config.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/configuration.md b/docs/configuration.md index 84e8a7facdf8..ac18137fc1f2 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -13,7 +13,7 @@ You can specify a custom config file when using Lighthouse through the CLI or co module.exports = { passes: [{ recordTrace: true, - pauseBeforeTraceEndMs: 5000, + pauseAfterLoadMs: 5000, useThrottling: true, gatherers: [], }], diff --git a/lighthouse-core/config/plots-config.js b/lighthouse-core/config/plots-config.js index 46a0181eed82..ab42c01acb5d 100644 --- a/lighthouse-core/config/plots-config.js +++ b/lighthouse-core/config/plots-config.js @@ -8,7 +8,9 @@ module.exports = { passes: [{ recordTrace: true, - pauseBeforeTraceEndMs: 5000, + pauseAfterLoadMs: 5250, + networkQuietThresholdMs: 5250, + cpuQuietThresholdMs: 5250, useThrottling: true, gatherers: [], }],