Skip to content

Commit

Permalink
update E2E tests for edit user
Browse files Browse the repository at this point in the history
  • Loading branch information
nbeck415 committed Oct 11, 2023
1 parent aef1c3d commit ae25077
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cypress/tests/shipyard/manage-user.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,10 @@ describe("Initialize user", function() {

});
it("should edit a user's information", function () {
cy.wait(2000);
cy.getBySel("sidenav-user-settings").click();

cy.wait(2000);
cy.get("input[name='email']").should('have.value', '');
cy.get("input[name='email']").type("[email protected]");
});
});

0 comments on commit ae25077

Please sign in to comment.