X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/d2da940fb4be60affe0a350c7f82cf91180f1e3a..589629e80967dc1f318561fbe6a4174e1da231a6:/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,