import { expect, test } from "@playwright/test"; // Apex tests don't need the OIDC dance — they just verify Next.js is // serving the right routes. test.describe("apex landing", () => { test("renders the landing page @needs-stack", async ({ page }) => { const apex = test.info().config.metadata?.apexURL ?? "http://localhost:3000"; await page.goto(apex); await expect(page.getByRole("heading", { name: "Breakpilot" })).toBeVisible(); await expect(page.getByText(/Customer portals live at/)).toBeVisible(); }); });