feat: extend agent-driven map workbench

This commit is contained in:
2026-07-20 19:57:35 +08:00
parent 86e9b08235
commit 7fbd8a5618
63 changed files with 4506 additions and 457 deletions
+4 -2
View File
@@ -1,17 +1,19 @@
import { defineConfig } from "playwright/test";
const baseURL = process.env.PLAYWRIGHT_BASE_URL ?? "http://127.0.0.1:3000";
export default defineConfig({
testDir: "./tests/browser",
testMatch: "**/*.e2e.ts",
timeout: 30_000,
use: {
baseURL: "http://127.0.0.1:3000",
baseURL,
viewport: { width: 1440, height: 900 }
},
webServer: {
command: "pnpm dev",
reuseExistingServer: true,
timeout: 120_000,
url: "http://127.0.0.1:3000"
url: baseURL
}
});