formatting

This commit is contained in:
Timo K.
2026-08-28 15:50:48 +02:00
parent 790bd1e2bf
commit d7d28a1b55

View File

@@ -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(),
);
});
});
});