fancy-mechanic-10638
09/27/2022, 6:52 PMtypescript
cy.intercept('get', '/employee/*', {fixture: 'employees'})
.as('employees')
cy.get('igx-drop-down-item').should('not.exist')
cy.get('input').type('bob')
cy.wait('@employees')
.its('response.body')
.then(....)
I feel like I have a chicken and egg problem here.