Released 10/22/2016
Bugfixes:
- Cypress now applies cookies to the browser which were cleared between redirects. Fixes #224.
- Snapshots now work even when
<html>
tag has invalid attributes. Fixes #271. - Cypress no longer crashes on initial
cy.visit()
when the 3rd party web server never ends the response. Fixes #272.
Misc:
- Changed default
responseTimeout
from20000
to30000
. - Changed default
pageLoadTimeout
from30000
to60000
. - The internal Cypress proxy now forcibly responds to requests taking longer
than
responseTimeout
. Currently this sends backtext/html
with theETIMEDOUT
error, but this likely needs to be configurable. The reason we are now forcibly applying timeouts is to preventsocket pooling exhaustion
where tests are running and a 3rd party server never responds to the request.