-
Notifications
You must be signed in to change notification settings - Fork 9.4k
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
tests(smoke): make specific assertions about deprecations #13191
Changes from all commits
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 |
---|---|---|
|
@@ -314,12 +314,18 @@ const expectations = { | |
'deprecations': { | ||
score: 0, | ||
details: { | ||
items: { | ||
// <M96 - Application Cache API manifest | ||
// * - window.webkitStorageInfo | ||
// * - Synchronous XMLHttpRequest | ||
length: '>=2', | ||
}, | ||
items: [ | ||
{ | ||
value: /Application Cache API manifest/, | ||
_maxChromiumMilestone: 94, | ||
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. oops, is it 96? 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. Looks like 94 is correct: https://www.chromestatus.com/feature/6192449487634432 |
||
}, | ||
{ | ||
value: /'window.webkitStorageInfo' is deprecated/, | ||
}, | ||
{ | ||
value: /Synchronous XMLHttpRequest on the main thread is deprecated/, | ||
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. how is this passing? won't this fail in later milestones because it's at index 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. well currently canary crashes due to unrelated reasons, so I couldn't test it locally.. but you are correct. Added a quick fix to the report asserting that should make this better |
||
}, | ||
], | ||
}, | ||
}, | ||
'password-inputs-can-be-pasted-into': { | ||
|
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.
removeKey
helper?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.
not feeling DRY is necessary here