-
- Notifications
You must be signed in to change notification settings - Fork 1.5k
chore: update puppeteer #4964
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
chore: update puppeteer #4964
Conversation
BREAKING CHANGE: minimum supported Nodejs version is 14.15.0
* refactor!: allow only Array for the proxy option * test: fix ci * chore: fix lint
* chore: update core dependencies * chore: update webpack merge * chore: update snapshots
94b586a to 4b4acfb Compare Codecov ReportPatch coverage has no change and project coverage change:
Additional details and impacted files@@ Coverage Diff @@ ## next #4964 +/- ## =========================================== - Coverage 92.04% 57.71% -34.33% =========================================== Files 15 11 -4 Lines 1571 1374 -197 Branches 595 541 -54 =========================================== - Hits 1446 793 -653 - Misses 116 480 +364 - Partials 9 101 +92 ☔ View full report in Codecov by Sentry. |
| exports[`historyApiFallback option as object with static set to false historyApiFallback should work and ignore static content: console messages 1`] = `[]`; | ||
| exports[`historyApiFallback option as object with static set to false historyApiFallback should work and ignore static content: console messages 1`] = ` | ||
| [ | ||
| "Failed to load resource: the server responded with a status of 404 (Not Found)", |
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.
- The new headless mode captures this when favicon is not present. It's valid here as static is false.
| @snitin315 still flacky, what we should fix/look? |
| Hmm, I think we should invest time in migration to the playwright. I'll evaluate the efforts. |
| Done in master, anyway thank you |
For Bugs and Features; did you add new tests?
No
Motivation / Use-Case
page._clientchanged topage._client()Failed to load resource: the server responded with a status of 404 (Not Found)error if favicon is not present hence I've added thefaviconin our static/public directory fixtures.publicdirectory at the root (default path) withfaviconso that tests can pick up the favicon automatically.Breaking Changes
None
Additional Info
No