Cypress - File Operations
Identify the error in the following Cypress code snippet that tries to read a file and assert its content:
cy.readFile('config.json').then((data) => {
expect(data).to.equal('config');
});