playwright: Reihenfolge

This commit is contained in:
ISA
2025-08-14 16:11:50 +02:00
parent 94051b69f9
commit 3e0b1e98bb
10 changed files with 542 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
import { test } from "../fixtures";
import { runDashboardTest } from "./dashboardTest";
import { runAnalogInputsTest } from "./analogInputsTest";
test("Dashboard und AnalogInputs", async ({ page }) => {
await runDashboardTest(page);
await runAnalogInputsTest(page);
});