Buffer cy.visit()
's response completely before resolving
#4231
Labels
pkg/server
This is due to an issue in the packages/server directory
Current flow
cy.visit('http://example.com')
http://example.com
and buffers it internally.http://example.com
response, which may still be streaming.This has problems:
Proposed flow
cy.visit('http://example.com')
http://example.com
and buffers it internally.http://example.com
response, which may not still be streaming.This may add a small delay to the user's test; however, it should also make tests much more reliable and make it easier to diagnose
cy.visit()
errors.The text was updated successfully, but these errors were encountered: