From b72b8e8387ab214ecb55b81779c0f4b59de4e71a Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Mon, 31 Jan 2022 13:45:22 +1100 Subject: [PATCH] fix tests --- ts/components/conversation/SessionConversation.tsx | 4 ++-- ts/session/apis/snode_api/SNodeAPI.ts | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ts/components/conversation/SessionConversation.tsx b/ts/components/conversation/SessionConversation.tsx index 1e348d58c..3f975bf79 100644 --- a/ts/components/conversation/SessionConversation.tsx +++ b/ts/components/conversation/SessionConversation.tsx @@ -185,7 +185,7 @@ export class SessionConversation extends React.Component { message: window.i18n('sendRecoveryPhraseMessage'), okTheme: SessionButtonColor.Danger, onClickOk: () => { - sendAndScroll(); + void sendAndScroll(); }, onClickClose: () => { window.inboxStore?.dispatch(updateConfirmModal(null)); @@ -193,7 +193,7 @@ export class SessionConversation extends React.Component { }) ); } else { - sendAndScroll(); + void sendAndScroll(); } window.inboxStore?.dispatch(quoteMessage(undefined)); diff --git a/ts/session/apis/snode_api/SNodeAPI.ts b/ts/session/apis/snode_api/SNodeAPI.ts index 6828b16e3..3709bb3c0 100644 --- a/ts/session/apis/snode_api/SNodeAPI.ts +++ b/ts/session/apis/snode_api/SNodeAPI.ts @@ -54,7 +54,8 @@ export function getLatestTimestampOffset() { } export function getNowWithNetworkOffset() { - return Date.now() - getLatestTimestampOffset(); + // make sure to call exports here, as we stub the exported one for testing. + return Date.now() - exports.getLatestTimestampOffset(); } export type SendParams = {