Skip to content

Commit

Permalink
Update Playwright tests
Browse files Browse the repository at this point in the history
  • Loading branch information
allanlasser committed Nov 22, 2023
1 parent b66d9f9 commit 9177f99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/anonymous/manager/app.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,15 @@ test.describe("manager tests", () => {
await page.goto("/app");

// help
await page.getByText("Help").click();
await page.getByText("Help", { exact: true }).click();
await expect(page.getByRole("button", { name: "FAQ" })).toBeVisible();

// close the menu
await page.locator(".overlay").click();

// language
await page.getByText("Language").click();
await expect(page.getByRole("button", { name: "English" })).toBeVisible();
await page.getByText("US English").click();
await expect(page.getByRole("button", { name: "Español" })).toBeVisible();

await page.locator(".overlay").click();
});
Expand Down

0 comments on commit 9177f99

Please sign in to comment.