@@ -30,6 +30,7 @@ test.describe('login flows', () => {
3030
3131 const email = TestDataFactory . generateEmail ( ) ;
3232 const postLoginPage = await signupPage . submit ( email , TestDataFactory . phoneNumber , TestDataFactory . password ) ;
33+ await postLoginPage . awaitPage ( ) ;
3334 const profilePage = await postLoginPage . continue ( true ) ;
3435 await profilePage . awaitPage ( ) ;
3536
@@ -54,6 +55,7 @@ test.describe('login flows', () => {
5455
5556 const email = TestDataFactory . generateEmail ( ) ;
5657 const postLoginPage = await signupPage . submit ( email , TestDataFactory . phoneNumber , TestDataFactory . password ) ;
58+ await postLoginPage . awaitPage ( ) ;
5759 const profilePage = await postLoginPage . continue ( true ) ;
5860 await profilePage . awaitPage ( ) ;
5961 const loginPage2 = await profilePage . logout ( ) ;
@@ -79,6 +81,7 @@ test.describe('login flows', () => {
7981
8082 const email = TestDataFactory . generateEmail ( ) ;
8183 const postLoginPage = await signupPage . submit ( email , TestDataFactory . phoneNumber , TestDataFactory . password ) ;
84+ await postLoginPage . awaitPage ( ) ;
8285 const profilePage = await postLoginPage . continue ( true ) ;
8386 await profilePage . awaitPage ( ) ;
8487
@@ -133,6 +136,7 @@ test.describe('login flows', () => {
133136
134137 const email = TestDataFactory . generateEmail ( ) ;
135138 const postLoginPage = await signupPage . submit ( email , TestDataFactory . phoneNumber , TestDataFactory . password ) ;
139+ await postLoginPage . awaitPage ( ) ;
136140 const profilePage = await postLoginPage . continue ( true ) ;
137141 await profilePage . awaitPage ( ) ;
138142 expect ( await profilePage . awaitState ( ProfileStatus . ListWithPasskeys ) ) . toBeTruthy ( ) ;
0 commit comments