Localazy Download (#29149)

* [create-pull-request] automated change

* Fix test

---------

Co-authored-by: t3chguy <2403652+t3chguy@users.noreply.github.com>
Co-authored-by: R Midhun Suresh <hi@midhun.dev>
This commit is contained in:
ElementRobot
2025-01-31 13:30:53 +01:00
committed by GitHub
parent f06ed2fa1f
commit dcce9c70dc
6 changed files with 1167 additions and 106 deletions

View File

@@ -62,7 +62,7 @@ describe("MemberListHeaderView", () => {
});
it("Does not show search box when there's less than 20 members", async () => {
expect(screen.queryByPlaceholderText("Filter room members")).toBeNull();
expect(screen.queryByPlaceholderText("Search room members")).toBeNull();
});
it("Shows search box when there's more than 20 members", async () => {
@@ -80,7 +80,7 @@ describe("MemberListHeaderView", () => {
memberListRoom.currentState.members[newMember.userId] = newMember;
}
await reRender();
expect(screen.queryByPlaceholderText("Filter room members")).toBeVisible();
expect(screen.queryByPlaceholderText("Search room members")).toBeVisible();
});
describe("Invite button functionality", () => {