test: refs #8484 enhance claimNotes test to ensure note visibility after saving
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Jose Antonio Tubau 2025-02-04 14:46:02 +01:00
parent e31361fc9b
commit b63be407d4
1 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,6 @@ describe('ClaimNotes', () => {
const message = 'This is a new message.';
cy.get('.q-textarea').type(message);
cy.get(saveBtn).click();
cy.get(firstNote).should('have.text', message);
cy.get(firstNote).should('be.visible').should('have.text', message);
});
});