v11.0.0
Breaking changes:
- Dropped support for Cypress v6.
Other changes:
-
Added support for Cypress v10. π
-
Untitled scenario outline no longer errors, fixes #731.
-
Outputting only messages is now possible, fixes #724.
-
Allow absolute output paths, partially fixes #736.
-
Output directories are automatically created recursively, partially fixes #736.
Upgrading to Cypress v10
There's no changes to configuration options, but if your configuration looked like this pre-10
{
"stepDefinitions": [
"cypress/integration/[filepath].{js,ts}",
"cypress/support/step_definitions/**/*.{js,ts}"
]
}
.. then it should look like this post-10 (notice the removal of cypress/integration
)
{
"stepDefinitions": [
"[filepath].{js,ts}",
"cypress/support/step_definitions/**/*.{js,ts}"
]
}