You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-08-09 10:22:46 +03:00
Add more access modifiers
This commit is contained in:
@@ -125,16 +125,16 @@ class MockCall {
|
||||
|
||||
public sendMetadataUpdate = jest.fn<void, []>();
|
||||
|
||||
on = jest.fn();
|
||||
removeListener = jest.fn();
|
||||
public on = jest.fn();
|
||||
public removeListener = jest.fn();
|
||||
|
||||
getOpponentMember(): Partial<RoomMember> {
|
||||
public getOpponentMember(): Partial<RoomMember> {
|
||||
return {
|
||||
userId: this.opponentUserId,
|
||||
};
|
||||
}
|
||||
|
||||
typed(): MatrixCall { return this as unknown as MatrixCall; }
|
||||
public typed(): MatrixCall { return this as unknown as MatrixCall; }
|
||||
}
|
||||
|
||||
describe('Group Call', function() {
|
||||
|
Reference in New Issue
Block a user