Mock a response object
This commit is contained in:
parent
26ec4853e7
commit
5d5caa3b35
1 changed files with 1 additions and 1 deletions
|
@ -135,7 +135,7 @@ export class HomeServerApi {
|
|||
return this._post(`/rooms/${encodeURIComponent(roomId)}/receipt/${encodeURIComponent(receiptType)}/${encodeURIComponent(eventId)}`,
|
||||
{}, {}, options);
|
||||
}
|
||||
return Promise.resolve(() => {});
|
||||
return {response: () => Promise.resolve(null)};
|
||||
}
|
||||
|
||||
passwordLogin(username, password, initialDeviceDisplayName, options = null) {
|
||||
|
|
Reference in a new issue