From: Eric Biagiotti Date: Tue, 21 May 2019 13:59:17 +0000 (-0400) Subject: 15088: Fixes linkAccountPanel reducer tests X-Git-Tag: 1.4.0~1^2~5 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/950b520777c389353222c717ee3ac18e80a468f2 15088: Fixes linkAccountPanel reducer tests Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti --- 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,