Conform more code to strict null checking (#10169)
* Conform more code to strict null checking * delint * Iterate * delint * Fix bad test
This commit is contained in:
@@ -50,10 +50,10 @@ describe("MKeyVerificationConclusion", () => {
|
||||
}) => {
|
||||
class MockVerificationRequest extends EventEmitter {
|
||||
constructor(
|
||||
public readonly pending: boolean,
|
||||
public readonly cancelled: boolean,
|
||||
public readonly done: boolean,
|
||||
public readonly otherUserId: string,
|
||||
public readonly pending?: boolean,
|
||||
public readonly cancelled?: boolean,
|
||||
public readonly done?: boolean,
|
||||
public readonly otherUserId?: string,
|
||||
) {
|
||||
super();
|
||||
}
|
||||
|
||||
@@ -140,7 +140,9 @@ describe("MLocationBody", () => {
|
||||
});
|
||||
|
||||
it("opens map dialog on click", () => {
|
||||
const modalSpy = jest.spyOn(Modal, "createDialog").mockReturnValue(undefined);
|
||||
const modalSpy = jest
|
||||
.spyOn(Modal, "createDialog")
|
||||
.mockReturnValue({ finished: new Promise(() => {}), close: jest.fn() });
|
||||
const component = getComponent();
|
||||
|
||||
act(() => {
|
||||
|
||||
@@ -63,7 +63,7 @@ describe("MessageEvent", () => {
|
||||
event = mkEvent({
|
||||
event: true,
|
||||
type: VoiceBroadcastInfoEventType,
|
||||
user: client.getUserId(),
|
||||
user: client.getUserId()!,
|
||||
room: room.roomId,
|
||||
content: {
|
||||
state: VoiceBroadcastInfoState.Started,
|
||||
|
||||
Reference in New Issue
Block a user