@@ -284,7 +284,9 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
284284 await u . po . checkout . fillTestCard ( ) ;
285285 await u . po . checkout . clickPayOrSubscribe ( ) ;
286286
287- await expect ( u . po . checkout . root . getByText ( / T r i a l .* s u c c e s s f u l l y .* s t a r t e d / i) ) . toBeVisible ( ) ;
287+ await expect ( u . po . checkout . root . getByText ( / T r i a l .* s u c c e s s f u l l y .* s t a r t e d / i) ) . toBeVisible ( {
288+ timeout : 15_000 ,
289+ } ) ;
288290 await u . po . checkout . confirmAndContinue ( ) ;
289291
290292 await u . po . page . goToRelative ( '/pricing-table' ) ;
@@ -412,6 +414,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
412414 await u . po . checkout . clickPayOrSubscribe ( ) ;
413415 await u . po . checkout . confirmAndContinue ( ) ;
414416
417+ await u . po . page . waitForAppUrl ( '/' ) ;
415418 await u . po . page . goToRelative ( '/user' ) ;
416419 await u . po . userProfile . waitForMounted ( ) ;
417420 await u . po . userProfile . switchToBillingTab ( ) ;
@@ -433,7 +436,8 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
433436 await u . po . checkout . waitForMounted ( ) ;
434437 await u . po . checkout . root . getByRole ( 'button' , { name : / ^ p a y \s \$ / i } ) . waitFor ( { state : 'visible' } ) ;
435438 await u . po . checkout . clickPayOrSubscribe ( ) ;
436-
439+ await u . po . checkout . confirmAndContinue ( ) ;
440+ await u . po . page . waitForAppUrl ( '/' ) ;
437441 await u . po . page . goToRelative ( '/user' ) ;
438442 await u . po . userProfile . waitForMounted ( ) ;
439443 await u . po . userProfile . switchToBillingTab ( ) ;
@@ -475,7 +479,9 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
475479 await u . po . checkout . waitForMounted ( ) ;
476480 await u . po . checkout . fillTestCard ( ) ;
477481 await u . po . checkout . clickPayOrSubscribe ( ) ;
478- await expect ( u . po . page . getByText ( 'Payment was successful!' ) ) . toBeVisible ( ) ;
482+ await expect ( u . po . page . getByText ( 'Payment was successful!' ) ) . toBeVisible ( {
483+ timeout : 15_000 ,
484+ } ) ;
479485
480486 await u . po . checkout . confirmAndContinue ( ) ;
481487 await u . po . pricingTable . startCheckout ( { planSlug : 'free_user' , shouldSwitch : true } ) ;
0 commit comments