chore: alle Panels zu den selben Position bringen

This commit is contained in:
ISA
2025-09-16 10:57:23 +02:00
parent 369f29a769
commit 1208024f76
17 changed files with 225 additions and 107 deletions

33
playwright.config.js Normal file
View File

@@ -0,0 +1,33 @@
// Playwright test configuration for the NodeMap project
// Starts the local Next.js custom server (server.js) and runs tests against http://localhost:3000
// eslint-disable-next-line @typescript-eslint/no-var-requires
const { defineConfig, devices } = require("@playwright/test");
module.exports = defineConfig({
testDir: "./playwright/tests",
timeout: 60_000,
expect: { timeout: 10_000 },
fullyParallel: true,
retries: process.env.CI ? 2 : 0,
reporter: [["list"], ["junit", { outputFile: "reports/junit/playwright.xml" }]],
use: {
baseURL: "http://localhost:3000",
trace: "on-first-retry",
video: "retain-on-failure",
screenshot: "only-on-failure",
headless: true,
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
],
webServer: {
command: "node server.js",
port: 3000,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
},
});