From 15523cde362b8bc325bafdafb3696b1aab1d4654 Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 30 Mar 2023 10:22:27 +0100 Subject: [PATCH] Update test interface to add call object (#10477) Compatibility with https://github.com/matrix-org/matrix-js-sdk/pull/3237 --- test/LegacyCallHandler-test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/LegacyCallHandler-test.ts b/test/LegacyCallHandler-test.ts index 515402c795..11c796b00d 100644 --- a/test/LegacyCallHandler-test.ts +++ b/test/LegacyCallHandler-test.ts @@ -365,7 +365,7 @@ describe("LegacyCallHandler", () => { fakeCall!.getRemoteAssertedIdentity = jest.fn().mockReturnValue({ id: NATIVE_BOB, }); - fakeCall!.emit(CallEvent.AssertedIdentityChanged); + fakeCall!.emit(CallEvent.AssertedIdentityChanged, fakeCall); // Now set the config option SdkConfig.add({ @@ -378,7 +378,7 @@ describe("LegacyCallHandler", () => { fakeCall!.getRemoteAssertedIdentity = jest.fn().mockReturnValue({ id: NATIVE_CHARLIE, }); - fakeCall!.emit(CallEvent.AssertedIdentityChanged); + fakeCall!.emit(CallEvent.AssertedIdentityChanged, fakeCall); await roomChangePromise; callHandler.removeAllListeners(); @@ -624,7 +624,7 @@ describe("LegacyCallHandler without third party protocols", () => { // call added to call map expect(callHandler.getCallForRoom(roomId)).toEqual(call); - call.emit(CallEvent.State, CallState.Ringing, CallState.Connected); + call.emit(CallEvent.State, CallState.Ringing, CallState.Connected, fakeCall); // ringer audio element started expect(mockAudioElement.play).toHaveBeenCalled(); @@ -641,7 +641,7 @@ describe("LegacyCallHandler without third party protocols", () => { // call added to call map expect(callHandler.getCallForRoom(roomId)).toEqual(call); - call.emit(CallEvent.State, CallState.Ringing, CallState.Connected); + call.emit(CallEvent.State, CallState.Ringing, CallState.Connected, fakeCall); // ringer audio element started expect(mockAudioElement.play).not.toHaveBeenCalled();