Cypress - Plugins and Ecosystem
Given this plugin code, what will be the output when the task 'greet' is called?
module.exports = (on) => {
on('task', {
greet(name) {
return `Hello, ${name}!`
}
})
}