1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-28 22:42:26 +00:00
bramw_baserow/e2e-tests/tests/builder/builderTemplate.spec.ts
2025-04-02 11:20:19 +02:00

14 lines
445 B
TypeScript

import { TemplatePage } from "../../pages/templatePage";
import { expect, test } from "../baserowTest";
test.describe("Builder template application test suite", () => {
test("Can show an AB template", async ({ page }) => {
const templatePage = new TemplatePage(page, "ab_ivory_theme");
await templatePage.goto();
await expect(
page.locator(".ab-heading--h3").getByText("Rebranding website")
).toBeVisible();
});
});