Skip to content

Commit

Permalink
fix cicd variable in ui.
Browse files Browse the repository at this point in the history
Signed-off-by: theresa <[email protected]>
  • Loading branch information
ichbinblau committed Nov 14, 2024
1 parent 31f32e8 commit e91c623
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions GraphRAG/ui/svelte/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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",
Expand Down

0 comments on commit e91c623

Please sign in to comment.