Cypress - Authentication and Sessions
What will be the output of the following Cypress test snippet?
cy.request('POST', '/api/login', { user: 'test', pass: '1234' })
.then(({ body }) => {
expect(body).to.have.property('token');
});