Skip to content

chore(site): add e2e tests for groups #12866

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 11 commits into from
Apr 5, 2024
Prev Previous commit
Next Next commit
Fix navigate test
  • Loading branch information
BrunoQuaresma committed Apr 4, 2024
commit befe669e69fc787ecd7933c11b0e45334d262f5d
2 changes: 1 addition & 1 deletion site/e2e/tests/groups/navigateToGroupPage.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ test("navigate to group page", async ({ page, baseURL }) => {
await page.goto(`${baseURL}/users`, { waitUntil: "domcontentloaded" });
await expect(page).toHaveTitle("Users - Coder");

await page.getByText("Groups").click();
await page.getByRole("link", { name: "Groups" }).click();
await expect(page).toHaveTitle("Groups - Coder");

const groupRow = page.getByRole("row", { name: group.display_name });
Expand Down