diff --git a/playwright.config.ts b/playwright.config.ts index b7338d5283..db2bfa5155 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -103,7 +103,7 @@ const config: PlaywrightTestConfig = { /* Run your local dev server before starting the tests */ webServer: { command: 'npm run dev', - port: 3000, + port: 8080, }, }; diff --git a/tests/libs/load-page.ts b/tests/libs/load-page.ts index 400e7a000a..11375e96f0 100644 --- a/tests/libs/load-page.ts +++ b/tests/libs/load-page.ts @@ -2,7 +2,7 @@ import { test } from '@playwright/test'; export function loadPage() { test.beforeEach(async ({ page }) => { - await page.goto('http://localhost:3000'); + await page.goto('http://localhost:8080'); // waiting for page loading end await page.waitForTimeout(1000); });