You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-07-31 13:44:28 +03:00
Avoid importing mkEvent from matrix-js-sdk/spec since that is not in the package (#11450)
This commit is contained in:
@ -16,7 +16,6 @@ limitations under the License.
|
||||
|
||||
import React from "react";
|
||||
import { fireEvent, render, screen } from "@testing-library/react";
|
||||
import { mkEvent } from "matrix-js-sdk/spec/test-utils/test-utils";
|
||||
import {
|
||||
EventTimeline,
|
||||
EventType,
|
||||
@ -133,7 +132,7 @@ describe("<RoomSettingsDialog />", () => {
|
||||
jest.spyOn(room, "getJoinRule").mockReturnValue(JoinRule.Invite);
|
||||
mockClient.emit(
|
||||
RoomStateEvent.Events,
|
||||
new MatrixEvent(mkEvent({ content: {}, type: EventType.RoomJoinRules })),
|
||||
new MatrixEvent({ content: {}, type: EventType.RoomJoinRules }),
|
||||
room.getLiveTimeline().getState(EventTimeline.FORWARDS)!,
|
||||
null,
|
||||
);
|
||||
|
Reference in New Issue
Block a user