Cypress - Plugins and Ecosystem
Identify the error in this plugin code:
module.exports = (on, config) => {
on('task', {
readFile(path) {
return fs.readFileSync(path, 'utf8')
}
})
}