Add mentions to notifications

This commit is contained in:
alonso.torres 2024-11-27 11:28:51 +01:00
parent 4bd1e32462
commit b1dda02b47
39 changed files with 2316 additions and 212 deletions

View file

@ -19,12 +19,8 @@ test("Comment is shown with scroll and valid position", async ({ page }) => {
});
await viewer.showComments();
await viewer.showCommentsThread(1);
await expect(
viewer.page.getByRole("textbox", { name: "Reply" }),
).toBeVisible();
await expect(viewer.page.getByRole("textbox")).toBeVisible();
await viewer.showCommentsThread(1);
await viewer.showCommentsThread(2);
await expect(
viewer.page.getByRole("textbox", { name: "Reply" }),
).toBeVisible();
await expect(viewer.page.getByRole("textbox")).toBeVisible();
});