You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However 400+ and 500+ status codes will not be caught by this, but are probably an issue. We should add a top level warning in this case.
mainRecord.hasErrorStatusCode() just checks if the mainRecord.statusCode is >= 400. We might as well use this and add the mainRecord.statusCode into a toplevelwarning, so the user knows this pageload is not your typical one.
The text was updated successfully, but these errors were encountered:
We have some checks in gather-runner to assert we have a network request for the document and it didn't completely fail:
lighthouse/lighthouse-core/gather/gather-runner.js
Lines 289 to 297 in 48a129f
completely fail =
Network.loadingFailed
protocol event.However 400+ and 500+ status codes will not be caught by this, but are probably an issue. We should add a top level warning in this case.
mainRecord.hasErrorStatusCode()
just checks if themainRecord.statusCode
is>= 400
. We might as well use this and add themainRecord.statusCode
into a toplevelwarning, so the user knows this pageload is not your typical one.The text was updated successfully, but these errors were encountered: