1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-07 23:02:56 +03:00

Merge branch 'develop' into robertlong/group-call

This commit is contained in:
Robin Townsend
2022-10-13 20:14:29 -04:00
104 changed files with 6514 additions and 4382 deletions

View File

@@ -1123,10 +1123,7 @@ describe('Group Call', function() {
let client: MatrixClient;
beforeEach(() => {
client = new MatrixClient({
baseUrl: "base_url",
request: (() => {}) as any, // NOP
});
client = new MatrixClient({ baseUrl: "base_url" });
jest.spyOn(client, "sendStateEvent").mockResolvedValue({} as any);
});