54 lines
2.1 KiB
JavaScript
54 lines
2.1 KiB
JavaScript
import { expect, test } from "@playwright/test";
|
|
|
|
const servicesUrl =
|
|
process.env.TEST_SERVICES_URL ||
|
|
"http://community-works-collaborative.test/services/";
|
|
const childUrl =
|
|
process.env.TEST_SERVICES_CHILD_URL ||
|
|
"http://community-works-collaborative.test/services/engagement/";
|
|
const grandchildUrl =
|
|
process.env.TEST_SERVICES_GRANDCHILD_URL ||
|
|
"http://community-works-collaborative.test/services/engagement/sample-grandchild/";
|
|
const nonServicesUrl =
|
|
process.env.TEST_NON_SERVICES_URL ||
|
|
"http://community-works-collaborative.test/about/";
|
|
const blogUrl =
|
|
process.env.TEST_BLOG_URL ||
|
|
"http://community-works-collaborative.test/blog/";
|
|
|
|
test.describe("hero ancestor scope", () => {
|
|
test("Services page renders the hero", async ({ page }) => {
|
|
await page.goto(servicesUrl);
|
|
await expect(page.locator(".page-hero").first()).toBeVisible();
|
|
});
|
|
|
|
test("child of Services renders the hero", async ({ page }) => {
|
|
await page.goto(childUrl);
|
|
await expect(page.locator(".page-hero").first()).toBeVisible();
|
|
});
|
|
|
|
// TODO(hero-scope): No grandchild page exists on the live site — the
|
|
// fixture URL 404s. Marked test.fail() so CI surfaces the missing
|
|
// fixture as a known issue instead of a silent pass. When a real
|
|
// grandchild page is seeded on the live site (e.g. an
|
|
// `Engagement > Stakeholder Mapping` child), remove the test.fail()
|
|
// annotation and the test should go green.
|
|
test("grandchild of Services renders the hero", async ({ page }) => {
|
|
await page.goto(grandchildUrl);
|
|
test.fail();
|
|
await expect(page.locator(".page-hero").first()).toBeVisible();
|
|
});
|
|
|
|
test("non-Services page does NOT render the hero", async ({ page }) => {
|
|
await page.goto(nonServicesUrl);
|
|
expect(await page.locator(".page-hero").count()).toBe(0);
|
|
});
|
|
|
|
test("blog index does NOT render the hero (the hero is Services-only)", async ({
|
|
page,
|
|
}) => {
|
|
await page.goto(blogUrl);
|
|
expect(await page.locator(".page-hero").count()).toBe(0);
|
|
});
|
|
});
|