mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-28 22:42:26 +00:00
14 lines
445 B
TypeScript
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();
|
|
});
|
|
});
|