Cypress - Assertions
Given the code:
What does this assertion check?
const user = { name: 'Alice', age: 30, active: true };
expect(user).to.have.property('age').that.is.a('number').and.is.above(18);What does this assertion check?
