Skip to content

Fix: Frontend CI Failing #74

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 4 commits into from
May 20, 2025
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions e2e/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ async function registerNewUser(page: Page) {
await page.getByPlaceholder("Password").first().fill(password);
await page.getByPlaceholder("Password (again)").click();
await page.getByPlaceholder("Password (again)").fill(password);
await page.getByRole("button", { name: "Sign Up" }).click();
await page.getByRole("button", { name: "Sign Up" }).click();
await page.getByLabel("First Name").click({ force: true });
await page.getByLabel("First Name").fill(firstname);
await page.getByLabel("Last Name").click({ force: true });
Expand Down Expand Up @@ -69,7 +69,7 @@ async function gotoAndLogin(page: Page) {
await page.getByPlaceholder("Email address").fill("[email protected]");
await page.getByPlaceholder("Password").click();
await page.getByPlaceholder("Password").fill("password");
await page.getByRole("button", { name: "Sign In" }).click();
await page.getByRole("button", { name: "Sign In" }).click(); // GitHub sign in button
await page.getByRole("button", { name: TEST_USER_INITIALS }).waitFor({ state: "visible" });

}
Expand Down
Loading