From 06b9105cee23c453548a8fe7f3c2e4c5e8a2e9c6 Mon Sep 17 00:00:00 2001 From: "Timo K." Date: Tue, 25 Aug 2026 23:32:22 +0200 Subject: [PATCH] Update DeveloperSettingsTab.test.tsx --- src/settings/DeveloperSettingsTab.test.tsx | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/settings/DeveloperSettingsTab.test.tsx b/src/settings/DeveloperSettingsTab.test.tsx index a824022f0..3abb4990a 100644 --- a/src/settings/DeveloperSettingsTab.test.tsx +++ b/src/settings/DeveloperSettingsTab.test.tsx @@ -436,7 +436,9 @@ describe("DeveloperSettingsTab", () => { expect(client.doesServerSupportUnstableFeature).toHaveBeenCalled(), ); - expect(screen.getByText(/Media key rotation: active \(5 participants\)/)).toBeInTheDocument(); + expect( + screen.getByText(/Media key rotation: active \(5 participants\)/), + ).toBeInTheDocument(); }); it("displays suppressed status when key rotation is suppressed", async () => { @@ -460,7 +462,11 @@ describe("DeveloperSettingsTab", () => { expect(client.doesServerSupportUnstableFeature).toHaveBeenCalled(), ); - expect(screen.getByText(/Media key rotation: suppressed, participant limit reached \(50 participants\)/)).toBeInTheDocument(); + expect( + screen.getByText( + /Media key rotation: suppressed, participant limit reached \(50 participants\)/, + ), + ).toBeInTheDocument(); }); it("does not render KeyRotationStatus when vm is not provided", async () => {