Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
uhoreg committed Nov 21, 2024
1 parent 648d15b commit bd19e00
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,9 @@ describe("UserIdentityWarning", () => {
await waitFor(() =>
expect(() => getWarningByText("@alice:example.org's identity appears to have changed.")).toThrow(),
);
expect(getWarningByText("@bob:example.org's identity appears to have changed.")).toBeInTheDocument();
await waitFor(() =>
expect(getWarningByText("@bob:example.org's identity appears to have changed.")).toBeInTheDocument(),
);
});

it("when invited users cannot see encrypted messages", async () => {
Expand Down

0 comments on commit bd19e00

Please sign in to comment.