test: npx playwright test erfolgreich

This commit is contained in:
ISA
2025-09-03 15:58:11 +02:00
parent 11bd68200b
commit 57ffdecb10
24 changed files with 308 additions and 9 deletions

View File

@@ -0,0 +1,6 @@
import { test } from "@playwright/test";
import { runSystemTest } from "../tests/pages/system/systemTest";
test("system page", async ({ page }) => {
await runSystemTest(page);
});