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
We have a XmlHttpRequest that never finishes. We're using it as a stream parsing responseText on every onProgress event.
The problem is that we never get the last chunk as it would be sitting somewhere buffered. We can't really control the server behaviour here and I wonder if the buffer can be flushed after each chunk?
Operating System: Linux
Cypress Version: 3.1.3
Browser Version: all of them
Is this a Feature or Bug?
bug
Current behavior:
cypress waits a request to complete
Desired behavior:
Cypress should propagate onProgress events and update responseText accordingly
How to reproduce:
an endpoint with Transfer-Encoding: chunked that sends messages one after another and doesn't close throughout the session.
browser connection that reads those messages listening to onProgress
parostatkiem-zz, Sawthis, dominics and bilbobrovall