Skip to content

Commit

Permalink
update to failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
tiyiprh committed Jul 16, 2024
1 parent a104ce8 commit 13a1225
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cypress/e2e/awx/access/users.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,10 @@ describe('Users List Actions', () => {
cy.clickTableRowLink('username', user.username);
cy.verifyPageTitle(`Edit ${user.username}`);
cy.clickButton(/^Edit user$/);
cy.verifyPageTitle('Edit User');
cy.verifyPageTitle(`Edit ${user.username}`);
cy.get('[data-cy="username"]').type(user.username + 'a');
cy.clickButton(/^Save user$/);
cy.verifyPageTitle(`${user.username}a`);
cy.verifyPageTitle(`Edit ${user.username}`);
});

it('navigates to the edit form from the users list row item', () => {
Expand Down

0 comments on commit 13a1225

Please sign in to comment.