Skip to content

Commit

Permalink
#9658 user invitation cypress tests
Browse files Browse the repository at this point in the history
  • Loading branch information
withanage committed Dec 13, 2024
1 parent bdd8082 commit b379776
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions cypress/tests/data/10-ApplicationSetup/40-CreateUsers.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,9 @@ describe('Data suite tests', function() {
}
];
users.forEach(user => {
cy.createUser(user);
cy.createUserByInvitation(user);
});
cy.logout();
var user = users[0];
if (!('email' in user)) user.email = user.username + '@mailinator.com';
if (!('password' in user)) user.password = user.username + user.username;

cy.login(user.username);
cy.resetPassword(user.username, user.password);
cy.logout();
});
})

0 comments on commit b379776

Please sign in to comment.