-
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
core(installable-manifest): pipeline-restarted check #13365
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
When a desktop PWA is uninstalled but has other open windows in scope, the pipeline-restarted message will be logged, signalling that the app install banner state has been reset. pipeline-restarted will be ignored by Lighthouse, as there is currently no reason audit the behavior of desktop PWAs after the app has been uninstalled. The related test has also been updated to run again.
…nto issue-13147-pipline-restarted
Minor spelling mistake.
Fixing formatting errors
Re-adding protocol-timeout to my branch.
…nto issue-13147-pipline-restarted
adamread
changed the title
Issue 13147 pipline restarted
core(Issue 13147) - pipline restarted installability check
Nov 17, 2021
adamread
changed the title
core(Issue 13147) - pipline restarted installability check
core:(Issue 13147) - pipline restarted installability check
Nov 17, 2021
adamread
changed the title
core:(Issue 13147) - pipline restarted installability check
core(Issue 13147): - pipline restarted installability check
Nov 17, 2021
adamread
changed the title
core(Issue 13147): - pipline restarted installability check
core(Issue 13147): pipline restarted installability check
Nov 17, 2021
adamread
changed the title
core(Issue 13147): pipline restarted installability check
core(issue 13147): pipline restarted installability check
Nov 17, 2021
connorjclark
approved these changes
Nov 17, 2021
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.
Very nice!
Little odd to translate this string we'll never show in our report, but there is still the JSON programatic users to consider, so I suppose it's necessary.
connorjclark
changed the title
core(issue 13147): pipline restarted installability check
core(installable-manifest): pipeline-restarted check
Nov 17, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
This adds the pipeline-restarted installable logging message to the installable-manifest audit.
This change brings the installable-manifest audit in line with the messages included in Chromium, allowing the automated comparison to run without complaining that something is missing.
The related test is also no longer skipped.
The pipeline-restarted message was introduced in Chromium commit 03777af. The message indicates that the app has been uninstalled, possibly in a context outside the currently active tab, and that the installability checks are being reset. This is only used on desktop. As Lighthouse won't be uninstalling the app, we filter the message out.
Related Issues/PRs
This is the first half of Issue 13147