Skip to content

Commit eb5db28

Browse files
committed
exclude astro and vue
1 parent e9a2f02 commit eb5db28

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

integration/tests/pricing-table.test.ts

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
2929
});
3030

3131
test('renders pricing details of a specific plan', async ({ page, context }) => {
32+
if (!app.name.includes('next')) {
33+
return;
34+
}
35+
3236
const u = createTestUtils({ app, page, context });
3337
await u.po.page.goToRelative('/billing/plan-details-btn');
3438

@@ -58,6 +62,10 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
5862
});
5963

6064
test('when signed in, clicking get started button opens checkout drawer', async ({ page, context }) => {
65+
if (!app.name.includes('next')) {
66+
return;
67+
}
68+
6169
const u = createTestUtils({ app, page, context });
6270
await u.po.signIn.goTo();
6371
await u.po.signIn.signInWithEmailAndInstantPassword({ email: fakeUser.email, password: fakeUser.password });
@@ -84,6 +92,9 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
8492
});
8593

8694
test('when signed in, clicking checkout button open checkout drawer', async ({ page, context }) => {
95+
if (!app.name.includes('next')) {
96+
return;
97+
}
8798
const u = createTestUtils({ app, page, context });
8899
await u.po.signIn.goTo();
89100
await u.po.signIn.signInWithEmailAndInstantPassword({ email: fakeUser.email, password: fakeUser.password });
@@ -118,6 +129,9 @@ testAgainstRunningApps({ withEnv: [appConfigs.envs.withBilling] })('pricing tabl
118129
});
119130

120131
test('Displays subscription details drawer', async ({ page, context }) => {
132+
if (!app.name.includes('next')) {
133+
return;
134+
}
121135
const u = createTestUtils({ app, page, context });
122136
await u.po.signIn.goTo();
123137
await u.po.signIn.signInWithEmailAndInstantPassword({ email: fakeUser.email, password: fakeUser.password });

0 commit comments

Comments
 (0)