-
I am using Percy Snapshot to test a Next.js site. When the tests run, I sporadically see messages like:
and then those images appear "broken" in the snapshot. What is causing the browser to abort that load and is there any way to control / prevent that when testing (e.g. with some sort of longer timeout)? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Hey @cancan101! This happens when the request fails by the asset discovery browser.
Do these requests require any kind of auth or headers set? You'll have to check the apps server logs to see why the connection is being dropped/closed/aborted. Chromium's network interception doesn't give us a reason why the request failed, just that the server failed to load or respond. |
Beta Was this translation helpful? Give feedback.
Hey @cancan101! This happens when the request fails by the asset discovery browser.
Do these requests require any kind of auth or headers set? You'll have to check the apps server logs to see why the connection is being dropped/closed/aborted. Chromium's network interception doesn't give us a reason why the request failed, just that the server failed to load or respond.