Cypress - File Operations
Given the file
data.json contains {"name":"Alice"}, what will this code log?cy.readFile('data.json').then((content) => {
console.log(content.name)
})