test: npx playwright test erfolgreich
This commit is contained in:
6
playwright/pages/analogInputsTest.ts
Normal file
6
playwright/pages/analogInputsTest.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { test } from "@playwright/test";
|
||||
import { runAnalogInputsTest } from "../tests/pages/analogInputs/analogInputsTest";
|
||||
|
||||
test("analog inputs page", async ({ page }) => {
|
||||
await runAnalogInputsTest(page);
|
||||
});
|
||||
6
playwright/pages/dashboardTest.ts
Normal file
6
playwright/pages/dashboardTest.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { test } from "@playwright/test";
|
||||
import { runDashboardTest } from "../tests/pages/dashboard/dashboardTest";
|
||||
|
||||
test("dashboard page", async ({ page }) => {
|
||||
await runDashboardTest(page);
|
||||
});
|
||||
6
playwright/pages/digitalInputsTest.ts
Normal file
6
playwright/pages/digitalInputsTest.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { test } from "@playwright/test";
|
||||
import { runDigitalInputsTest } from "../tests/pages/digitalInputs/digitalInputsTest";
|
||||
|
||||
test("digital inputs page", async ({ page }) => {
|
||||
await runDigitalInputsTest(page);
|
||||
});
|
||||
6
playwright/pages/digitalOutputsTest.ts
Normal file
6
playwright/pages/digitalOutputsTest.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { test } from "@playwright/test";
|
||||
import { runDigitalOutputsTest } from "../tests/pages/digitalOutputs/digitalOutputsTest";
|
||||
|
||||
test("digital outputs page", async ({ page }) => {
|
||||
await runDigitalOutputsTest(page);
|
||||
});
|
||||
6
playwright/pages/einstellungenTest.ts
Normal file
6
playwright/pages/einstellungenTest.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { test } from "@playwright/test";
|
||||
import { runSettingsPageTest } from "../tests/pages/settingsPage/settingsPageTest";
|
||||
|
||||
test("einstellungen page", async ({ page }) => {
|
||||
await runSettingsPageTest(page);
|
||||
});
|
||||
5
playwright/pages/indexTest.ts
Normal file
5
playwright/pages/indexTest.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { test } from "@playwright/test";
|
||||
|
||||
test("index page", async ({ page }) => {
|
||||
await page.goto("/");
|
||||
});
|
||||
6
playwright/pages/kabelueberwachungTest.ts
Normal file
6
playwright/pages/kabelueberwachungTest.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { test } from "@playwright/test";
|
||||
import { runCableMonitoringTest } from "../tests/pages/kabelueberwachung/kabelueberwachungTest";
|
||||
|
||||
test("kabelueberwachung page", async ({ page }) => {
|
||||
await runCableMonitoringTest(page);
|
||||
});
|
||||
6
playwright/pages/meldungenTest.ts
Normal file
6
playwright/pages/meldungenTest.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { test } from "@playwright/test";
|
||||
import { runMeldungenTest } from "../tests/pages/meldungen/meldungenTest";
|
||||
|
||||
test("meldungen page", async ({ page }) => {
|
||||
await runMeldungenTest(page);
|
||||
});
|
||||
6
playwright/pages/systemTest.ts
Normal file
6
playwright/pages/systemTest.ts
Normal 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);
|
||||
});
|
||||
5
playwright/pages/zutrittskontrolleTest.ts
Normal file
5
playwright/pages/zutrittskontrolleTest.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { test } from "@playwright/test";
|
||||
|
||||
test("zutrittskontrolle page", async ({ page }) => {
|
||||
await page.goto("/zutrittskontrolle");
|
||||
});
|
||||
Reference in New Issue
Block a user