We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1df335d commit c2aa0b7Copy full SHA for c2aa0b7
1 file changed
testing/e2e/src/global/global.setup.spec.ts
@@ -10,7 +10,8 @@ test.describe.serial(() => {
10
expect(response.status()).toBe(200);
11
await expect(response.json()).resolves.toMatchObject({ isSetup: false });
12
});
13
- test('should successfully setup', async ({ setupPage }) => {
+ test('should successfully setup', async ({ getPageModel }) => {
14
+ const setupPage = await getPageModel('/setup');
15
await setupPage.fillSetupForm(initAppOptions);
16
await setupPage.expect.toHaveURL('/auth/login');
17
0 commit comments