fix: KabelModulstatus KÜ V 421 und 431

This commit is contained in:
ISA
2025-08-27 09:27:47 +02:00
parent e69934ff51
commit 699ebef7bd
24 changed files with 1040 additions and 26 deletions

View File

@@ -0,0 +1,11 @@
// playwright/tests/michael/combined.spec.ts
import { test } from "./fixtures";
import { runDashboardTest } from "./dashboardTest";
import { runAnalogInputsTest } from "./analogInputsTest";
import { runSettingsPageTest } from "./settingsPageTest";
test("Dashboard, AnalogInputs und SettingsPage", async ({ page }) => {
await runDashboardTest(page);
await runAnalogInputsTest(page);
await runSettingsPageTest(page);
});