feat: flip routing — customer portal at /, admin at /admin #57

Merged
ghost merged 3 commits from feat/flip-routing-customer-root into main 2026-03-19 02:47:19 +00:00
Showing only changes of commit 76238e377b - Show all commits
+1 -1
View File
@@ -42,7 +42,7 @@ test.beforeEach(async ({ page }) => {
test("customer portal loads at root", async ({ page }) => {
await page.goto("/");
await expect(page.getByText("Paws & Reflect")).toBeVisible();
await expect(page.getByRole("navigation").getByText("Paws & Reflect")).toBeVisible();
await expect(page.locator("nav")).toBeVisible();
});