Skip to content

Commit

Permalink
Fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
avdev4j committed Aug 21, 2020
1 parent dc05abf commit a147f0b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,18 @@ describe('/account/password', () => {

it("requires new password", () => {
cy.get(newPasswordSelector)
.should('have.class', classInvalid)
.type('jhipster')
.should('have.class', classValid);
.should('have.class', classInvalid)
.type('jhipster')
.should('have.class', classValid);
cy.get(newPasswordSelector).clear();
});

it("requires confirm new password", () => {
cy.get(newPasswordSelector).type('jhipster');
cy.get(confirmPasswordSelector)
.should('have.class', classInvalid)
.type('jhipster')
.should('have.class', classValid);
.should('have.class', classInvalid)
.type('jhipster')
.should('have.class', classValid);
cy.get(newPasswordSelector).clear();
cy.get(confirmPasswordSelector).clear();
});
Expand Down

0 comments on commit a147f0b

Please sign in to comment.