Cypress - File Operations
Given the code below, what will be logged to the console if
example.txt contains the text "Hello Cypress"?
cy.readFile('example.txt').then((text) => {
console.log(text);
});