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 create group test
  • Loading branch information
BrunoQuaresma committed Apr 4, 2024
commit 5d2b96ee49858561c8a86cc3bb36662b60a7d182
2 changes: 1 addition & 1 deletion site/e2e/tests/groups/createGroup.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ test("create group", async ({ page, baseURL }) => {
await page.goto(`${baseURL}/groups`, { waitUntil: "domcontentloaded" });
await expect(page).toHaveTitle("Groups - Coder");

await page.getByRole("button", { name: "Create group" }).click();
await page.getByText("Create group").click();
await expect(page).toHaveTitle("Create Group - Coder");

const name = randomName();
Expand Down