Skip to content

Commit

Permalink
fix: minor error related to navigation
Browse files Browse the repository at this point in the history
  • Loading branch information
vinaybadgujar102 committed Oct 6, 2024
1 parent 396936f commit 8de42fd
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,7 @@ test.describe("Goal Sharing Feature", () => {

test(`check if collaborated goal is visible in User ${receiver}'s MyGoal`, async () => {
console.log(`Checking if collaborated goal is visible in User ${receiver}'s MyGoal...`);
await receiverPage().goto("http://127.0.0.1:3000/");
await receiverPage().getByRole("button", { name: "Goals" }).click();
await receiverPage().reload();
await receiverPage().waitForLoadState("networkidle");
await goToMyGoalsPageFlow(receiverPage());
await expect(receiverPage().locator(".my-goals-content").first()).toContainText(currentGoalTitle);
});
});
Expand Down

0 comments on commit 8de42fd

Please sign in to comment.