Skip to content

Commit 2e14df5

Browse files
fix 🔨
1 parent 46ce6e1 commit 2e14df5

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

tests/login.test.ts

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,15 @@ test.describe('Register and Authentication tests', () => {
1313
const register = new RegisterFacade(page);
1414
const auth = new AuthFacade(page);
1515

16+
// Do the registration
1617
await register.registerAs("usuarioteste@gmail.com",
1718
"Testezinho da Silva",
1819
"12345",
1920
"12345");
2021

22+
// Register confirmation assert
2123
await register.registerConfirmation();
22-
2324
// Do login at the same flow because the application doesn't have database, so it saves only in memory
2425
await auth.loginAs("usuarioteste@gmail.com", "12345");
25-
2626
});
27-
28-
// test('CT002 - Should be able to logging in with an exist user', async ({ page }) => {
29-
// const auth = new AuthFacade(page);
30-
// await auth.loginAs("usuarioteste@gmail.com", "12345");
31-
// });
32-
3327
});

0 commit comments

Comments
 (0)