diff --git a/test/cypress/integration/claim/claimNotes.spec.js b/test/cypress/integration/claim/claimNotes.spec.js index 3c0043e12..fa4a214a1 100644 --- a/test/cypress/integration/claim/claimNotes.spec.js +++ b/test/cypress/integration/claim/claimNotes.spec.js @@ -8,12 +8,9 @@ describe('ClaimNotes', () => { it('should add a new note', () => { const message = 'This is a new message.'; - cy.get('.q-textarea') - .should('be.visible') - .should('not.be.disabled') - .type(message); + cy.get('.q-textarea').should('not.be.disabled').type(message); cy.get(saveBtn).click(); - cy.get(firstNote).should('be.visible').should('have.text', message); + cy.get(firstNote).should('have.text', message); }); });