Skip to content
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
test fix
  • Loading branch information
briangregoryholmes committed Dec 22, 2025
commit b4e434b4bb19ecccf64fbecf3b04453bd0b8508b
4 changes: 3 additions & 1 deletion web-admin/tests/setup/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,9 @@ setup.describe("global setup", () => {
await expect(
adminPage.getByRole("link", { name: RILL_ORG_NAME }),
).toBeVisible(); // Organization breadcrumb
await expect(adminPage.getByRole("link", { name: "AdBids" })).toBeVisible(); // Project breadcrumb
await expect(
adminPage.getByRole("link", { name: "AdBids", exact: true }),
).toBeVisible(); // Project breadcrumb

// Expect to land on the project home page
await adminPage.waitForURL(`/${RILL_ORG_NAME}/AdBids`);
Expand Down
Loading