fix: refs #8372 update routeList.spec.js to correct input values for route creation and selection
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
parent
aee9be59aa
commit
3fc076b006
|
@ -10,7 +10,7 @@ describe('Route', () => {
|
|||
|
||||
it('Route list create route', () => {
|
||||
cy.addBtnClick();
|
||||
cy.get('input[name="description"]').type('first mock{enter}');
|
||||
cy.get('input[name="description"]').type('routeTestOne{enter}');
|
||||
cy.get('.q-notification__message').should('have.text', 'Data created');
|
||||
cy.url().should('include', '/summary');
|
||||
});
|
||||
|
@ -24,9 +24,9 @@ describe('Route', () => {
|
|||
.then((rowCount) => {
|
||||
expect(rowCount).to.be.greaterThan(0);
|
||||
});
|
||||
cy.get(getRowColumn(2, 3) + getVnSelect).type('{downArrow}{enter}');
|
||||
cy.get(getRowColumn(2, 4) + getVnSelect).type('{downArrow}{enter}');
|
||||
cy.get(getRowColumn(2, 5) + getVnSelect).type('{downArrow}{enter}');
|
||||
cy.get(getRowColumn(1, 3) + getVnSelect).type('{downArrow}{enter}');
|
||||
cy.get(getRowColumn(1, 4) + getVnSelect).type('{downArrow}{enter}');
|
||||
cy.get(getRowColumn(1, 5) + getVnSelect).type('{downArrow}{enter}');
|
||||
cy.get('button[title="Save"]').click();
|
||||
cy.get('.q-notification__message').should('have.text', 'Data saved'); */
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue