Cypress - Plugins and Ecosystem
What is wrong with this task definition in
cypress.config.js?
tasks: {
readFile(path) {
const fs = require('fs')
return fs.readFileSync(path, 'utf8')
}
}
When called as cy.task('readFile', 'data.txt'), it throws an error.