From 7a71188c08d7fb8741ac561a21845366cf4e7b4b Mon Sep 17 00:00:00 2001 From: Theo Sanderson Date: Fri, 10 Jan 2025 17:38:17 +0000 Subject: [PATCH 1/2] Update playwright.config.ts --- integration-tests/playwright.config.ts | 36 +------------------------- 1 file changed, 1 insertion(+), 35 deletions(-) diff --git a/integration-tests/playwright.config.ts b/integration-tests/playwright.config.ts index 126be09d51..470217c584 100644 --- a/integration-tests/playwright.config.ts +++ b/integration-tests/playwright.config.ts @@ -42,39 +42,5 @@ export default defineConfig({ { name: 'firefox', use: { ...devices['Desktop Firefox'] }, - }, -/* - { - name: 'webkit', - use: { ...devices['Desktop Safari'] }, - }, - */ - - /* Test against mobile viewports. */ - // { - // name: 'Mobile Chrome', - // use: { ...devices['Pixel 5'] }, - // }, - // { - // name: 'Mobile Safari', - // use: { ...devices['iPhone 12'] }, - // }, - - /* Test against branded browsers. */ - // { - // name: 'Microsoft Edge', - // use: { ...devices['Desktop Edge'], channel: 'msedge' }, - // }, - // { - // name: 'Google Chrome', - // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, - // }, - ], - - /* Run your local dev server before starting the tests */ - // webServer: { - // command: 'npm run start', - // url: 'http://127.0.0.1:3000', - // reuseExistingServer: !process.env.CI, - // }, + } }); From d5161602d12a8eae0bdacc63aa5095ade55989d4 Mon Sep 17 00:00:00 2001 From: Theo Sanderson Date: Fri, 10 Jan 2025 17:38:43 +0000 Subject: [PATCH 2/2] Update registration.spec.ts --- integration-tests/tests/specs/auth/registration.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/tests/specs/auth/registration.spec.ts b/integration-tests/tests/specs/auth/registration.spec.ts index d78db7c2a3..0a02cda932 100644 --- a/integration-tests/tests/specs/auth/registration.spec.ts +++ b/integration-tests/tests/specs/auth/registration.spec.ts @@ -11,6 +11,6 @@ test.describe('Registration Flow', () => { test('should successfully register a new user', async ({ page, testAccount }) => { await authPage.createAccount(testAccount); - // Add your assertions here + }); });