Deu erro e o teste não rodou...
esse foi o meu código:
describe('Buscar fotos e dados', ()=> {
it('buscar fotos do flavio', ()=> {
cy.request({
method: 'GET'
url: 'https://apialurapic.herokuapp.com/flavio/photos'
}).then((res) => {
expect(res.status).to.be.equal(200)
expect(res.body).is.not.empty
expect(res.body[0]).to.have.property('description')
expect(res.body[0].description).to.be.equal('Farol iluminado')
})
})
})