Cypress - Plugins and Ecosystem
What is wrong with this plugin code?
module.exports = (on, config) => {
on('task', {
readFile(path) {
const fs = require('fs')
return fs.readFileSync(path, 'utf8')
}
})
return config
}