I am trying to assert the value's in an array. At this moment I made it to assert just the length:
cy.get('@UrlAndAppendices')
.its('request.body.correctionInstructionAppendices')
.should('have.length', 2)
What is the best way to compare this? I can make an deep equal with a fixture. But I dont think that this would be the cleanest solution for assertin just 2 value's in a array.