From d7d28a1b55441aa3bcd5a73d096b61eee8024d1a Mon Sep 17 00:00:00 2001 From: "Timo K." Date: Fri, 28 Aug 2026 15:50:48 +0200 Subject: [PATCH] formatting --- src/settings/DeveloperSettingsTab.test.tsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/settings/DeveloperSettingsTab.test.tsx b/src/settings/DeveloperSettingsTab.test.tsx index 4533531c2..bd2b40b7d 100644 --- a/src/settings/DeveloperSettingsTab.test.tsx +++ b/src/settings/DeveloperSettingsTab.test.tsx @@ -436,7 +436,7 @@ describe("DeveloperSettingsTab", () => { await waitFor(() => expect( screen.getByText(/Media key rotation: active \(5 participants\)/), - ).toBeInTheDocument() + ).toBeInTheDocument(), ); }); @@ -461,7 +461,7 @@ describe("DeveloperSettingsTab", () => { screen.getByText( /Media key rotation: suppressed, participant limit reached \(50 participants\)/, ), - ).toBeInTheDocument() + ).toBeInTheDocument(), ); }); @@ -479,9 +479,10 @@ describe("DeveloperSettingsTab", () => { ); await waitFor(() => - expect(screen.queryByText(/Media key rotation:/)).not.toBeInTheDocument() + expect( + screen.queryByText(/Media key rotation:/), + ).not.toBeInTheDocument(), ); - }); }); });