Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rique223 committed Jul 30, 2024
1 parent 4161066 commit 6cd4678
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions apps/meteor/tests/e2e/administration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,12 @@ test.describe.parallel('administration', () => {

test('expect create a user', async () => {
await poAdmin.tabs.users.btnNewUser.click();
await poAdmin.tabs.users.inputEmail.type(faker.internet.email());
await poAdmin.tabs.users.inputName.type(faker.person.firstName());
await poAdmin.tabs.users.inputUserName.type(faker.internet.userName());
await poAdmin.tabs.users.inputSetManually.click();
await poAdmin.tabs.users.inputEmail.type(faker.internet.email());
await poAdmin.tabs.users.checkboxVerified.click();
await poAdmin.tabs.users.inputPassword.type('any_password');
await poAdmin.tabs.users.inputConfirmPassword.type('any_password');
await poAdmin.tabs.users.inputSetManually.click();
await expect(poAdmin.tabs.users.userRole).toBeVisible();
await poAdmin.tabs.users.btnSave.click();
});
Expand Down

0 comments on commit 6cd4678

Please sign in to comment.