Releases: cypress-io/code-coverage
Releases · cypress-io/code-coverage
v3.2.0
v3.1.0
v3.0.2
v3.0.1
v3.0.0
3.0.0 (2020-04-06)
Features
BREAKING CHANGES
- the task sets an environment variable and needs
to return its config. The new registration thus looks like this
// your plugins file
module.exports = (on, config) => {
require('@cypress/code-coverage/task')(on, config)
// IMPORTANT to return the config object
// with the any changed environment variables
return config
}
Support code can check variable Cypress.env('codeCoverageTasksRegistered')
before calling cy.task
-
update readme
-
update examples
-
add small plugins file
-
update readme
-
add example using plugins and support
-
add new example to CI
-
no need to start server in the example