X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/df4133dde10614e53a41b16a5c6062c3d1777059..c133ed0f3634fe29b082a4501abd04f05f6221d5:/src/store/auth/auth-reducer.test.ts diff --git a/src/store/auth/auth-reducer.test.ts b/src/store/auth/auth-reducer.test.ts index 8311e861ed..30bee3bc1b 100644 --- a/src/store/auth/auth-reducer.test.ts +++ b/src/store/auth/auth-reducer.test.ts @@ -49,23 +49,6 @@ describe('auth-reducer', () => { }); }); - it('should save api token', () => { - const initialState = undefined; - - const state = reducer(initialState, authActions.SAVE_API_TOKEN("token")); - expect(state).toEqual({ - apiToken: "token", - user: undefined, - sshKeys: [], - sessions: [], - homeCluster: "", - localCluster: "", - loginCluster: "", - remoteHosts: {}, - remoteHostsConfig: {} - }); - }); - it('should set user details on success fetch', () => { const initialState = undefined;