Releases: cypress-io/cypress
Releases · cypress-io/cypress
0.10.8
0.10.7
Released 08/16/2015
Features:
- Port can now be specified as a CLI argument and will override any values stored in
cypress.json
.
Misc:
- When running through the CLI, Cypress will now display an error if the server's port is currently in use. Previously this would not output an rror and the process would just hang.
0.10.6
0.10.5
Released 08/13/2015
Bugfixes:
- Running a specific test won't open/close immediately when starting up (fixes weird flickering effect).
- .check() and .uncheck() commands will now correctly "end" even if they were
noop
due to the element already being in a checked or unchecked state.
Misc:
- Currently running tests now display a spinner to indicate they are currently running.
- Optimized performance of command lists.
- Commands which were silenced with
{log: false}
will now always display in the Command Log if they were part of a replayed chain of commands ue to an alias reference becoming stale. Previously they would not display which was very confusing. sinon.js
is no longer minified.
0.10.4
Released 08/11/2015
Bugfixes:
- The OSX Cypress App was not being properly signed (since 0.10.0) due to an oversight in our deployment process. This has been fixed now and dditional checks have been added to ensure the deploy'd version is properly signed. Updating within the app was unaffected. This bug only ffected fresh downloads from the internet.
- Errors / crashes encountered when updating to newer versions through the app should be fixed now.
0.10.3
Released 08/10/2015
Bugfixes:
- Cypress Errors in
hooks
(beforeEach, etc) will no longer cause Mocha to fire itsend
event thus ending the entire run. In CI, this would ause the test suite to end early. Uncaught Mocha errors will however continue this behavior. Cypress does not yet have a "skipped" visual state or tests which were skipped, so at the moment it may look a little strange and unpredictable.
Misc:
- Tweaked clicking algorithm to re-verify an elements visibility anytime the click retries its
retry
logic. Previously this check only appened once at the beginning of the click. - In CI, the window size (not the viewport) has been changed from
1024x768
to1280x720
. This will only affectscreenshot
artifacts which re taken automatically with cy.screenshot() (coming soon) or whenever a test fails (also coming soon).
0.10.2
0.9.6
0.9.5
Released 07/14/2015
Features:
- .click(), .type(), .clear(), .select(), .check(), .uncheck() now will wait for the subject to automatically become visible instead of throwing immediately if the element is not in a visible state.
Misc:
- Swapped out ugly nonsense
refresh
icon tosquare-o
to represent a test which has not run yet.
0.9.4
Released 07/06/2015
Features:
- cy.contains(), cy.get(), and
traversal commands
will now all log out heir last known$el
on failure. This means the$el
will be highlight during Command Log hovering, and will display in the console on click. his should make debugging failed DOM based commands much easier. Fixes #52.
Bugfixes:
- Fixed edge case with cy.contains() and command options
visible
andexist
where it would always fail ven though the matched element was in the correct state.
Misc:
- cy.contains() now throws when provided the command option:
length
because it will only ever return 1 element.