diff --git a/GraphRAG/ui/svelte/playwright.config.ts b/GraphRAG/ui/svelte/playwright.config.ts index d1e3390ed..f330308e4 100644 --- a/GraphRAG/ui/svelte/playwright.config.ts +++ b/GraphRAG/ui/svelte/playwright.config.ts @@ -15,7 +15,7 @@ import { defineConfig, devices } from "@playwright/test"; export default defineConfig({ testDir: "./tests", /* Maximum time one test can run for. */ - timeout: 30 * 1000, + timeout: 300 * 1000, expect: { /** * Maximum time expect() should wait for the condition to be met. @@ -38,7 +38,7 @@ export default defineConfig({ /* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */ actionTimeout: 0, /* Base URL to use in actions like `await page.goto('/')`. */ - baseURL: "http://10.7.4.57:80", + baseURL: "http://localhost:80", /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ trace: "on-first-retry",