feat: implementing playwright tests

This commit is contained in:
2025-11-15 11:04:20 +00:00
parent d442bae300
commit f7015e68a7
8 changed files with 396 additions and 3 deletions

View File

@@ -0,0 +1,18 @@
import { defineConfig, devices } from "@playwright/test";
export default defineConfig({
testDir: "./e2e",
fullyParallel: true,
workers: "100%",
reporter: "html",
use: {
baseURL: "http://localhost:8080",
trace: "on-first-retry",
},
projects: [
{
name: "chromium",
use: { ...devices["Desktop Chrome"] },
},
],
});