-
Notifications
You must be signed in to change notification settings - Fork 9.5k
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: remove estimated-input-latency and first-cpu-idle #12553
Changes from 1 commit
ed1e253
26b996b
2553b59
cd054bc
848520f
496e07e
0366f6f
6e0e146
2ba8018
bad98d9
cc78d92
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,9 +26,10 @@ module.exports = [ | |
'first-meaningful-paint': { | ||
score: '>=0.90', // primarily just making sure it didn't fail/go crazy, specific value isn't that important | ||
}, | ||
'first-cpu-idle': { | ||
score: '>=0.90', // primarily just making sure it didn't fail/go crazy, specific value isn't that important | ||
}, | ||
// TODO ? | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. flagging to remove |
||
// 'first-cpu-idle': { | ||
// score: '>=0.90', // primarily just making sure it didn't fail/go crazy, specific value isn't that important | ||
// }, | ||
'interactive': { | ||
score: '>=0.90', // primarily just making sure it didn't fail/go crazy, specific value isn't that important | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,10 +17,11 @@ module.exports = [ | |
requestedUrl: 'http://localhost:10200/tricky-tti.html', | ||
finalUrl: 'http://localhost:10200/tricky-tti.html', | ||
audits: { | ||
'first-cpu-idle': { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. on these you could add assertions for TBT if you want, but i don't think that's necessary or a great test for that metric. so i'm +1 on removing in this file too |
||
// stalls for ~5 seconds, ~5 seconds out, so should be at least ~10s | ||
numericValue: '>9900', | ||
}, | ||
// TODO ? | ||
// 'first-cpu-idle': { | ||
// // stalls for ~5 seconds, ~5 seconds out, so should be at least ~10s | ||
// numericValue: '>9900', | ||
// }, | ||
'interactive': { | ||
// stalls for ~5 seconds, ~5 seconds out, so should be at least ~10s | ||
numericValue: '>9900', | ||
|
@@ -33,10 +34,11 @@ module.exports = [ | |
requestedUrl: 'http://localhost:10200/tricky-tti-late-fcp.html', | ||
finalUrl: 'http://localhost:10200/tricky-tti-late-fcp.html', | ||
audits: { | ||
'first-cpu-idle': { | ||
// FCP at least ~5 seconds out | ||
numericValue: '>4900', | ||
}, | ||
// TODO ? | ||
// 'first-cpu-idle': { | ||
// // FCP at least ~5 seconds out | ||
// numericValue: '>4900', | ||
// }, | ||
'interactive': { | ||
// FCP at least ~5 seconds out | ||
numericValue: '>4900', | ||
|
This file was deleted.
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should I replace these smoke expectations with something else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nah. FCI is basically TTI and TTI is already there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
delete?