fix tests
This commit is contained in:
parent
201332d96c
commit
34cb89e86a
1 changed files with 3 additions and 1 deletions
|
@ -14,7 +14,7 @@ import dis from '../../../../src/dispatcher';
|
||||||
import DMRoomMap from '../../../../src/utils/DMRoomMap.js';
|
import DMRoomMap from '../../../../src/utils/DMRoomMap.js';
|
||||||
import GroupStore from '../../../../src/stores/GroupStore.js';
|
import GroupStore from '../../../../src/stores/GroupStore.js';
|
||||||
|
|
||||||
import { Room, RoomMember } from 'matrix-js-sdk';
|
import { MatrixClient, Room, RoomMember } from 'matrix-js-sdk';
|
||||||
|
|
||||||
function generateRoomId() {
|
function generateRoomId() {
|
||||||
return '!' + Math.random().toString().slice(2, 10) + ':domain';
|
return '!' + Math.random().toString().slice(2, 10) + ':domain';
|
||||||
|
@ -48,6 +48,8 @@ describe('RoomList', () => {
|
||||||
sandbox = TestUtils.stubClient(sandbox);
|
sandbox = TestUtils.stubClient(sandbox);
|
||||||
client = MatrixClientPeg.get();
|
client = MatrixClientPeg.get();
|
||||||
client.credentials = {userId: myUserId};
|
client.credentials = {userId: myUserId};
|
||||||
|
//revert this to prototype method as the test-utils monkey-patches this to return a hardcoded value
|
||||||
|
client.getUserId = MatrixClient.prototype.getUserId;
|
||||||
|
|
||||||
clock = lolex.install();
|
clock = lolex.install();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue