Fix test failures: provide isIntialSyncComplete on mock client (#10122)

This commit is contained in:
Andy Balaam 2023-02-09 11:36:02 +00:00 committed by GitHub
parent 2501dad0a3
commit c4a6cc8e65
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -94,6 +94,8 @@ describe("RoomViewStore", function () {
getDeviceId: jest.fn().mockReturnValue("ABC123"),
sendStateEvent: jest.fn().mockResolvedValue({}),
supportsThreads: jest.fn(),
isInitialSyncComplete: jest.fn(),
relations: jest.fn(),
});
const room = new Room(roomId, mockClient, userId);
const room2 = new Room(roomId2, mockClient, userId);