Cypress - File Operations
Given this Cypress test:
The test fails even though the file downloads correctly. What is the likely cause?
cy.downloadFile('https://example.com/report.pdf', 'cypress/downloads/report.pdf')
cy.readFile('cypress/downloads/report.pdf').should('contain', 'Summary')The test fails even though the file downloads correctly. What is the likely cause?
