Skip to content

Commit

Permalink
Fix correct defaults for LCP and CLS (#4205)
Browse files Browse the repository at this point in the history
  • Loading branch information
soulgalore committed Jul 2, 2024
1 parent a65a9d4 commit 8f008b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -1469,15 +1469,15 @@ export async function parseCommandLine() {
.option('browsertime.screenshotLCP', {
alias: 'screenshotLCP',
type: 'boolean',
default: false,
default: true,
describe:
'Save one screenshot per iteration that shows the largest contentful paint element (if the browser supports LCP).',
group: 'Screenshot'
})
.option('browsertime.screenshotLS', {
alias: 'screenshotLS',
type: 'boolean',
default: false,
default: true,
describe:
'Save one screenshot per iteration that shows the layout shift elements (if the browser supports layout shift).',
group: 'Screenshot'
Expand Down

0 comments on commit 8f008b8

Please sign in to comment.