mirror of https://github.com/vector-im/riot-web
Mock usage of getRoomUpgradeHistory in SpaceStore tests
parent
5dfe53920c
commit
82ad85a974
|
@ -77,6 +77,7 @@ describe("SpaceStore", () => {
|
|||
|
||||
const run = async () => {
|
||||
client.getRoom.mockImplementation(roomId => rooms.find(room => room.roomId === roomId));
|
||||
client.getRoomUpgradeHistory.mockImplementation(roomId => [rooms.find(room => room.roomId === roomId)]);
|
||||
await testUtils.setupAsyncStoreWithClient(store, client);
|
||||
jest.runAllTimers();
|
||||
};
|
||||
|
|
|
@ -103,6 +103,7 @@ export function createTestClient() {
|
|||
isUserIgnored: jest.fn().mockReturnValue(false),
|
||||
getCapabilities: jest.fn().mockResolvedValue({}),
|
||||
supportsExperimentalThreads: () => false,
|
||||
getRoomUpgradeHistory: jest.fn().mockReturnValue([]),
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue