diff --git a/src/voice-broadcast/components/molecules/VoiceBroadcastRecordingBody.tsx b/src/voice-broadcast/components/molecules/VoiceBroadcastRecordingBody.tsx index 1c81e295c6..b9721170eb 100644 --- a/src/voice-broadcast/components/molecules/VoiceBroadcastRecordingBody.tsx +++ b/src/voice-broadcast/components/molecules/VoiceBroadcastRecordingBody.tsx @@ -24,14 +24,10 @@ export const VoiceBroadcastRecordingBody: React.FC +
{ it("should render the expected HTML", () => { expect(renderResult.container).toMatchSnapshot(); }); - - describe("and clicked", () => { - beforeEach(async () => { - await userEvent.click(renderResult.getByText("My room")); - }); - - it("should stop the recording", () => { - expect(recording.getState()).toBe(VoiceBroadcastInfoState.Stopped); - }); - }); }); describe("when rendering a non-live broadcast", () => {