13 lines
484 B
TypeScript
13 lines
484 B
TypeScript
import { test } from "../fixtures";
|
|
import { runDashboardTest } from "./dashboardTest";
|
|
import { runAnalogInputsTest } from "./analogInputsTest";
|
|
import { runSettingsPageTest } from "./settingsPageTest";
|
|
import { runDigitalInputsTest } from "./digitalInputsTest";
|
|
|
|
test("Dashboard, AnalogInputs und SettingsPage", async ({ page }) => {
|
|
//await runDashboardTest(page);
|
|
//await runAnalogInputsTest(page);
|
|
//await runSettingsPageTest(page);
|
|
await runDigitalInputsTest(page);
|
|
});
|