-
Notifications
You must be signed in to change notification settings - Fork 331
/
Copy pathclerk-v4-ap-core-1.test.ts
40 lines (33 loc) · 1.25 KB
/
clerk-v4-ap-core-1.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import { test } from '@playwright/test';
import type { Application } from '../../models/application';
import { appConfigs } from '../../presets';
import type { FakeUser } from '../../testUtils';
import { createTestUtils } from '../../testUtils';
import { testSignIn, testSignUp, testSSR } from './common';
test.describe('Next with ClerkJS V4 <-> Account Portal Core 1 @ap-flows', () => {
test.describe.configure({ mode: 'serial' });
let app: Application;
let fakeUser: FakeUser;
test.beforeAll(async () => {
app = await appConfigs.next.appRouterAPWithClerkNextV4.clone().commit();
await app.setup();
await app.withEnv(appConfigs.envs.withAPCore1ClerkV4);
await app.dev();
const u = createTestUtils({ app });
fakeUser = u.services.users.createFakeUser();
await u.services.users.createBapiUser(fakeUser);
});
test.afterAll(async () => {
await fakeUser.deleteIfExists();
await app.teardown();
});
test('sign in', async ({ page, context }) => {
await testSignIn({ app, page, context, fakeUser });
});
test('sign up', async ({ page, context }) => {
await testSignUp({ app, page, context, fakeUser });
});
test('ssr', async ({ page, context }) => {
await testSSR({ app, page, context, fakeUser });
});
});