@@ -32,9 +32,8 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
3232 } ) ;
3333
3434 test ( 'renders pricing details of a specific plan' , async ( { page, context } ) => {
35- if ( ! app . name . includes ( 'next' ) ) {
36- return ;
37- }
35+ test . skip ( app . name . includes ( 'astro' ) , 'Still working on it' ) ;
36+
3837 const u = createTestUtils ( { app, page, context } ) ;
3938 await u . po . page . goToRelative ( '/billing/plan-details-btn' ) ;
4039
@@ -83,9 +82,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
8382 page,
8483 context,
8584 } ) => {
86- if ( ! app . name . includes ( 'next' ) ) {
87- return ;
88- }
85+ test . skip ( app . name . includes ( 'astro' ) , 'Still working on it' ) ;
8986 const u = createTestUtils ( { app, page, context } ) ;
9087 await u . po . signIn . goTo ( ) ;
9188 await u . po . signIn . signInWithEmailAndInstantPassword ( { email : fakeUser . email , password : fakeUser . password } ) ;
@@ -100,9 +97,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
10097 } ) ;
10198
10299 test ( 'when signed in, clicking checkout button open checkout drawer' , async ( { page, context } ) => {
103- if ( ! app . name . includes ( 'next' ) ) {
104- return ;
105- }
100+ test . skip ( app . name . includes ( 'astro' ) , 'Still working on it' ) ;
106101 const u = createTestUtils ( { app, page, context } ) ;
107102 await u . po . signIn . goTo ( ) ;
108103 await u . po . signIn . signInWithEmailAndInstantPassword ( { email : fakeUser . email , password : fakeUser . password } ) ;
@@ -137,9 +132,7 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
137132 } ) ;
138133
139134 test ( 'opens subscription details drawer' , async ( { page, context } ) => {
140- if ( ! app . name . includes ( 'next' ) ) {
141- return ;
142- }
135+ test . skip ( app . name . includes ( 'astro' ) , 'Still working on it' ) ;
143136 const u = createTestUtils ( { app, page, context } ) ;
144137 await u . po . signIn . goTo ( ) ;
145138 await u . po . signIn . signInWithEmailAndInstantPassword ( { email : fakeUser . email , password : fakeUser . password } ) ;
0 commit comments