7 lines
198 B
TypeScript
7 lines
198 B
TypeScript
import { test } from "@playwright/test";
|
|
import { runDashboardTest } from "../tests/pages/dashboard/dashboardTest";
|
|
|
|
test("dashboard page", async ({ page }) => {
|
|
await runDashboardTest(page);
|
|
});
|