9 lines
275 B
TypeScript
9 lines
275 B
TypeScript
import { test } from "../fixtures";
|
|
import { runDashboardTest } from "./dashboardTest";
|
|
import { runAnalogInputsTest } from "./analogInputsTest";
|
|
|
|
test("Dashboard und AnalogInputs", async ({ page }) => {
|
|
await runDashboardTest(page);
|
|
await runAnalogInputsTest(page);
|
|
});
|