[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 time-to-first-byte and lcp-breakdown #14941

Merged
merged 40 commits into from
Apr 25, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
7ad95ad
core: add lcp request timings for wpt analysis
adamraine Mar 31, 2023
f1e2815
tests
adamraine Mar 31, 2023
aa7b9c3
add ttfb + wpt fixes
adamraine Apr 4, 2023
05b1533
test
adamraine Apr 4, 2023
f0b8c99
expand
adamraine Apr 5, 2023
1e71d31
wpt on gcp
adamraine Apr 5, 2023
89c772a
non img
adamraine Apr 5, 2023
ae30f5c
gcp scripts
adamraine Apr 7, 2023
befa77d
tests
adamraine Apr 7, 2023
2665cb4
ttfb no throttling
adamraine Apr 11, 2023
105b93f
document urls
adamraine Apr 11, 2023
94db20e
lcp record
adamraine Apr 11, 2023
9390257
type
adamraine Apr 11, 2023
44fdd50
timing summary test
adamraine Apr 11, 2023
2f2e8db
sample
adamraine Apr 11, 2023
2d6cf90
Merge branch 'main' into lcp-load-delay-analysis
adamraine Apr 11, 2023
acfb79e
unit
adamraine Apr 11, 2023
5328e61
better ttfb
adamraine Apr 14, 2023
a57c51f
comments
adamraine Apr 17, 2023
fc47184
rn
adamraine Apr 17, 2023
5ebd448
better
adamraine Apr 18, 2023
a1acfa1
fix tests
adamraine Apr 18, 2023
e98110c
Merge branch 'main' into lcp-load-delay-analysis
adamraine Apr 18, 2023
6656fff
rename
adamraine Apr 18, 2023
8fec330
image record test
adamraine Apr 18, 2023
53d56df
ttfb test
adamraine Apr 18, 2023
f342e99
ope
adamraine Apr 18, 2023
32407e8
lcp breakdown test
adamraine Apr 18, 2023
77433d3
smokes
adamraine Apr 18, 2023
f80ad2e
sample
adamraine Apr 18, 2023
d2b176e
extra
adamraine Apr 18, 2023
30b3b61
I cannot trust you
adamraine Apr 19, 2023
46887f5
small things
adamraine Apr 19, 2023
6ca196e
Merge branch 'main' into lcp-load-delay-analysis
adamraine Apr 20, 2023
9dd7aab
lantern
adamraine Apr 24, 2023
2a58f89
comments
adamraine Apr 25, 2023
556d85b
real traces
adamraine Apr 25, 2023
1def483
new metrics test
adamraine Apr 25, 2023
54059a2
undefined if text
adamraine Apr 25, 2023
225e437
defer lantern test to new PR
adamraine Apr 25, 2023
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
test
  • Loading branch information
adamraine committed Apr 4, 2023
commit 05b15333688dd3f4dcf1174505c4ec2eaefc5b85
8 changes: 8 additions & 0 deletions core/test/audits/__snapshots__/metrics-test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ Object {
"speedIndexTs": 23467606130,
"totalBlockingTime": 0,
"totalCumulativeLayoutShift": undefined,
"ttfb": 565,
"ttfbTs": 23466588051,
}
`;

Expand Down Expand Up @@ -115,6 +117,8 @@ Object {
"speedIndexTs": undefined,
"totalBlockingTime": 1205,
"totalCumulativeLayoutShift": 0,
"ttfb": 736,
"ttfbTs": undefined,
}
`;

Expand Down Expand Up @@ -174,6 +178,8 @@ Object {
"speedIndexTs": 225414777015,
"totalBlockingTime": 48,
"totalCumulativeLayoutShift": 0,
"ttfb": 261,
"ttfbTs": 225414432704,
}
`;

Expand Down Expand Up @@ -233,5 +239,7 @@ Object {
"speedIndexTs": undefined,
"totalBlockingTime": 777,
"totalCumulativeLayoutShift": 0,
"ttfb": undefined,
"ttfbTs": undefined,
}
`;
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Object {
"roughEstimateOfLCPLoadEnd": undefined,
"roughEstimateOfLCPLoadStart": undefined,
"roughEstimateOfSI": 3681,
"roughEstimateOfTTFB": undefined,
"roughEstimateOfTTI": 4367,
}
`;
2 changes: 2 additions & 0 deletions core/test/computed/metrics/timing-summary-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ describe('Timing summary', () => {
"speedIndexTs": 10328522909,
"totalBlockingTime": 2.7429999999994834,
"totalCumulativeLayoutShift": 0.0011656245471340055,
"ttfb": undefined,
"ttfbTs": undefined,
}
`);
// Includes performance metrics
Expand Down
Loading