File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed
Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff 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} ) ;
You can’t perform that action at this time.
0 commit comments