1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-09 10:22:46 +03:00

More TS strict mode fixes

This commit is contained in:
David Baker
2022-10-26 12:33:06 +01:00
parent 4cd50e4871
commit 5679c86ca6
10 changed files with 46 additions and 45 deletions

View File

@@ -74,7 +74,7 @@ describe('Group Call Event Handler', function() {
{ roomId: FAKE_ROOM_ID } as unknown as RoomState,
);
const groupCall = groupCallEventHandler.groupCalls.get(FAKE_ROOM_ID);
const groupCall = groupCallEventHandler.groupCalls.get(FAKE_ROOM_ID)!;
expect(groupCall.state).toBe(GroupCallState.LocalCallFeedUninitialized);