[go: nahoru, domu]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

core: add largest contentful paint to lantern and default config #9905

Merged
merged 50 commits into from
Nov 10, 2019
Merged
Changes from 1 commit
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
ec75de3
first pass
connorjclark Sep 20, 2019
183b080
update
connorjclark Sep 20, 2019
03f8ab6
i18n
connorjclark Sep 20, 2019
52a8d28
typos
connorjclark Sep 20, 2019
4e2e688
metrics
connorjclark Sep 20, 2019
f1836a0
ts
connorjclark Sep 20, 2019
449c7c5
fix
connorjclark Sep 20, 2019
d821da7
Apply suggestions from code review
connorjclark Sep 20, 2019
9cc6b8c
todo
connorjclark Sep 20, 2019
211a90b
fix lcp
connorjclark Sep 20, 2019
ee9f34e
update sample trace
connorjclark Sep 20, 2019
24db2ed
tweaks
connorjclark Sep 20, 2019
308f0fe
fix metrics-test
connorjclark Sep 20, 2019
33fecc9
rename all those pwa trace requires
connorjclark Sep 20, 2019
2b87da0
just update all the metric snapshots
connorjclark Sep 20, 2019
c473bf5
undo tests
connorjclark Sep 23, 2019
26bb02a
m79 in metrics test
connorjclark Sep 23, 2019
b848a73
m60
connorjclark Sep 23, 2019
967d630
lcp metric trace test
connorjclark Sep 24, 2019
5b80688
Merge remote-tracking branch 'origin/master' into lcp
connorjclark Sep 27, 2019
9da66f9
pr
connorjclark Sep 27, 2019
49aa30a
Update lighthouse-core/lib/tracehouse/trace-processor.js
connorjclark Sep 27, 2019
a71ab04
Merge branch 'lcp' of github.com:GoogleChrome/lighthouse into lcp
connorjclark Sep 27, 2019
7fd52f4
Apply suggestions from code review
connorjclark Sep 30, 2019
f351590
update traces
connorjclark Oct 1, 2019
ff42528
minify trace
connorjclark Oct 1, 2019
e93e396
first pass
connorjclark Oct 15, 2019
9103431
wip
connorjclark Oct 15, 2019
a3fade6
fix print
connorjclark Oct 29, 2019
567efc2
improve
connorjclark Oct 29, 2019
459a1de
Merge remote-tracking branch 'origin/master' into lcp-lantern
connorjclark Oct 30, 2019
a0b31db
lint, update with master
connorjclark Oct 30, 2019
045b829
add lcp to default config
connorjclark Oct 30, 2019
498df14
fix tests
connorjclark Oct 30, 2019
7bb9d86
rm stuff
connorjclark Oct 30, 2019
de48435
Merge remote-tracking branch 'origin/master' into lcp-lantern
connorjclark Nov 8, 2019
eb3599e
pr
connorjclark Nov 8, 2019
6d12f11
Apply suggestions from code review
connorjclark Nov 9, 2019
fa7f089
lint. line length
paulirish Nov 9, 2019
42b7ad1
fix lantern test
connorjclark Nov 9, 2019
8b5cce0
Merge remote-tracking branch 'origin/master' into lcp-lantern
connorjclark Nov 9, 2019
ce0042b
fix tests
connorjclark Nov 9, 2019
bbc5030
fix trace processor test
connorjclark Nov 9, 2019
9812701
rm common prefix
connorjclark Nov 9, 2019
e0a04b7
fix cli test
connorjclark Nov 9, 2019
2d34e65
delete old test
connorjclark Nov 9, 2019
6a1fdb7
pr
connorjclark Nov 9, 2019
1579ccb
comment
connorjclark Nov 9, 2019
5fc5db0
Merge remote-tracking branch 'origin/master' into lcp-lantern
connorjclark Nov 10, 2019
98f3ea2
use a better trace for lcp
connorjclark Nov 10, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix print
  • Loading branch information
connorjclark committed Oct 29, 2019
commit a3fade6b5228003aca23286eb5268585f86e7326
6 changes: 3 additions & 3 deletions lighthouse-core/scripts/lantern/print-correlations.js
Original file line number Diff line number Diff line change
Expand Up @@ -388,9 +388,9 @@ findAndPrintWorst10Sites('timeToConsistentlyInteractive', [
]);
findAndPrintWorst10Sites('speedIndex', ['optimisticSI', 'pessimisticSI', 'roughEstimateOfSI']);
findAndPrintWorst10Sites('largestContentfulPaint', [
'optimisticSI',
'pessimisticSI',
'roughEstimateOfSI',
'optimisticLCP',
'pessimisticLCP',
'roughEstimateOfLCP',
]);

findAndPrintFixesRegressions();
Expand Down