Fix tests

This commit is contained in:
Travis Ralston 2021-04-21 16:45:21 -06:00
parent 4be9c51dad
commit a53696ff5e
3 changed files with 12 additions and 2 deletions

View file

@ -29,7 +29,10 @@ function waitForRoomListStoreUpdate() {
describe('RoomList', () => {
function createRoom(opts) {
const room = new Room(generateRoomId(), null, client.getUserId());
const room = new Room(generateRoomId(), MatrixClientPeg.get(), client.getUserId(), {
// The room list now uses getPendingEvents(), so we need a detached ordering.
pendingEventOrdering: "detached",
});
if (opts) {
Object.assign(room, opts);
}