X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3b53b656e65fdabc32b3bc748074eb35e9df98eb..1d4e548cf6c8f11d939712ea5f4df06786a89d64:/src/store/link-account-panel/link-account-panel-reducer.test.ts 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 4cb88a85ad..15a9f18903 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 @@ -4,7 +4,6 @@ import { linkAccountPanelReducer, LinkAccountPanelError, LinkAccountPanelStatus, OriginatingUser } from "~/store/link-account-panel/link-account-panel-reducer"; import { linkAccountPanelActions } from "~/store/link-account-panel/link-account-panel-actions"; -import { UserResource } from "~/models/user"; describe('link-account-panel-reducer', () => { const initialState = undefined; @@ -16,6 +15,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 +42,8 @@ describe('link-account-panel-reducer', () => { expect(state).toEqual({ targetUser, targetUserToken, + isProcessing: false, + selectedCluster: undefined, userToLink, userToLinkToken, originatingUser: OriginatingUser.TARGET_USER, @@ -63,6 +66,8 @@ describe('link-account-panel-reducer', () => { expect(state).toEqual({ targetUser, targetUserToken: undefined, + isProcessing: false, + selectedCluster: undefined, userToLink, userToLinkToken: undefined, originatingUser: OriginatingUser.TARGET_USER,