Release diagram Tools v0.1.0

This commit is contained in:
2026-09-01 14:10:51 +02:00
commit b78f20f66a
57 changed files with 8273 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import { defineConfig, devices } from "@playwright/test";
export default defineConfig({
testDir: "./tests/browser",
workers: 1,
timeout: 120000,
expect: { timeout: 10000 },
use: { baseURL: "http://127.0.0.1:4222" },
webServer: {
command: "npm run build && node scripts/serve-test.mjs",
url: "http://127.0.0.1:4222",
reuseExistingServer: !process.env.CI,
timeout: 180000,
},
projects: [
{ name: "chromium", use: { ...devices["Desktop Chrome"] } },
{ name: "firefox", use: { ...devices["Desktop Firefox"] } },
],
});