0
0
Fork 0

fix: refs #7500 fixed e2e test

This commit is contained in:
Jon Elias 2024-09-13 11:34:45 +02:00
parent 0dbcc4be3d
commit 0f604ea8b5
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ describe('EntryDms', () => {
expect(value).to.have.length(newFileTd++); expect(value).to.have.length(newFileTd++);
const newRowSelector = `tbody > :nth-child(${newFileTd})`; const newRowSelector = `tbody > :nth-child(${newFileTd})`;
cy.waitForElement(newRowSelector); cy.waitForElement(newRowSelector);
cy.validateRow(newRowSelector, [u, u, u, u, 'ENTRADA ID 1']); cy.validateRow(newRowSelector, [u, u, u, u, u, 'ENTRADA ID 1']);
//Edit new dms //Edit new dms
const newDescription = 'entry id 1 modified'; const newDescription = 'entry id 1 modified';
@ -38,7 +38,7 @@ describe('EntryDms', () => {
cy.saveCard(); cy.saveCard();
cy.reload(); cy.reload();
cy.validateRow(newRowSelector, [u, u, u, u, newDescription]); cy.validateRow(newRowSelector, [u, u, u, u, u, newDescription]);
}); });
}); });
}); });