Cypress - Authentication and Sessions
What will be the output of the following Cypress code snippet?
cy.window().then(win => {
win.localStorage.setItem('user', 'Alice');
const user = win.localStorage.getItem('user');
cy.wrap(user).should('equal', 'Alice');
});