From 950b520777c389353222c717ee3ac18e80a468f2 Mon Sep 17 00:00:00 2001 From: Eric Biagiotti Date: Tue, 21 May 2019 09:59:17 -0400 Subject: [PATCH] 15088: Fixes linkAccountPanel reducer tests Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti --- .../link-account-panel/link-account-panel-reducer.test.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/store/link-account-panel/link-account-panel-reducer.test.ts b/src/store/link-account-panel/link-account-panel-reducer.test.ts index 4cb88a85..d1bd8dfd 100644 --- a/src/store/link-account-panel/link-account-panel-reducer.test.ts +++ b/src/store/link-account-panel/link-account-panel-reducer.test.ts @@ -16,6 +16,8 @@ describe('link-account-panel-reducer', () => { const state = linkAccountPanelReducer(initialState, linkAccountPanelActions.LINK_INIT({targetUser})); expect(state).toEqual({ targetUser, + isProcessing: false, + selectedCluster: undefined, targetUserToken: undefined, userToLink: undefined, userToLinkToken: undefined, @@ -41,6 +43,8 @@ describe('link-account-panel-reducer', () => { expect(state).toEqual({ targetUser, targetUserToken, + isProcessing: false, + selectedCluster: undefined, userToLink, userToLinkToken, originatingUser: OriginatingUser.TARGET_USER, @@ -63,6 +67,8 @@ describe('link-account-panel-reducer', () => { expect(state).toEqual({ targetUser, targetUserToken: undefined, + isProcessing: false, + selectedCluster: undefined, userToLink, userToLinkToken: undefined, originatingUser: OriginatingUser.TARGET_USER, -- 2.30.2