/* Copyright 2024 New Vector Ltd. Copyright 2022 The Matrix.org Foundation C.I.C. SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only Please see LICENSE files in the repository root for full details. */ import React from "react"; import { render, RenderResult, screen } from "jest-matrix-react"; import userEvent from "@testing-library/user-event"; import { mocked } from "jest-mock"; import { MatrixClient, RelationType } from "matrix-js-sdk/src/matrix"; import { textForVoiceBroadcastStoppedEvent, VoiceBroadcastInfoState } from "../../../../src/voice-broadcast"; import { stubClient } from "../../../test-utils"; import { mkVoiceBroadcastInfoStateEvent } from "./test-utils"; import dis from "../../../../src/dispatcher/dispatcher"; import { Action } from "../../../../src/dispatcher/actions"; jest.mock("../../../../src/dispatcher/dispatcher"); describe("textForVoiceBroadcastStoppedEvent", () => { const otherUserId = "@other:example.com"; const roomId = "!room:example.com"; let client: MatrixClient; const renderText = (senderId: string, startEventId?: string) => { const event = mkVoiceBroadcastInfoStateEvent( roomId, VoiceBroadcastInfoState.Stopped, senderId, client.deviceId!, ); if (startEventId) { event.getContent()["m.relates_to"] = { rel_type: RelationType.Reference, event_id: startEventId, }; } return render(