Cypress - Plugins and Ecosystem
Consider this plugin code:
What will
module.exports = (on, config) => {
on('task', {
echo(text) {
console.log(text)
return text
}
})
}What will
cy.task('echo', 'Test') return in the test?