X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c7e85a03f2726bd20bc10aeb9edb2cc826f16909..77c99a3667bbbf09734bede8f154ef86a60d823b:/src/store/auth/auth-action.test.ts diff --git a/src/store/auth/auth-action.test.ts b/src/store/auth/auth-action.test.ts index d58c9159..e5775a49 100644 --- a/src/store/auth/auth-action.test.ts +++ b/src/store/auth/auth-action.test.ts @@ -56,6 +56,27 @@ describe('auth-actions', () => { expect(store.getState().auth).toEqual({ apiToken: "token", sshKeys: [], + sessions: [{ + "active": true, + "baseUrl": undefined, + "clusterId": undefined, + "email": "test@test.com", + "loggedIn": true, + "remoteHost": undefined, + "status": 2, + "token": "token", + "username": "John Doe" + }, { + "active": false, + "baseUrl": "", + "clusterId": "xc59", + "email": "", + "loggedIn": false, + "remoteHost": "xc59.api.arvados.com", + "status": 0, + "token": "", + "username": "" + }], user: { email: "test@test.com", firstName: "John",