Cypress - Plugins and Ecosystem
Identify the error in this plugin code snippet:
module.exports = (on, config) => {
on('task', {
greet(name) {
console.log('Hello ' + name)
}
})
}