fix(entryPreAccount): refs #8277 update test cases to use correct row ID for document inheritance
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Jorge Penadés 2025-04-08 11:01:37 +02:00
parent 4151423a1b
commit 87d4e02c9d
1 changed files with 2 additions and 2 deletions

View File

@ -29,14 +29,14 @@ describe('Entry PreAccount Functionality', () => {
});
it('should ask to inherit the doc. and open VnDms popup if user choose "no"', () => {
selectRowsByCol('id', [102]);
selectRowsByCol('id', [101]);
cy.dataCy('preAccount_btn').click();
cy.dataCy('updateFile_no').click();
cy.get('#formModel').should('be.visible');
});
it('should ask to inherit the doc. and open VnDms popup if user choose "yes" and pre-account', () => {
selectRowsByCol('id', [102]);
selectRowsByCol('id', [101]);
cy.dataCy('preAccount_btn').click();
cy.dataCy('updateFile_yes').click();
cy.checkNotification('It has been successfully pre-accounted');