X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/e4143ec29fb0adb4f38d4066fccc88af036bbe01..936aa32e065b7f672e27b95262720c2ce8258bf6:/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 a4017db3..eb7e0c0d 100644 --- a/src/store/auth/auth-reducer.test.ts +++ b/src/store/auth/auth-reducer.test.ts @@ -30,6 +30,8 @@ describe('auth-reducer', () => { lastName: "Doe", uuid: "uuid", ownerUuid: "ownerUuid", + identityUrl: "identityUrl", + prefs: {}, isAdmin: false }; const state = reducer(initialState, authActions.INIT({ user, token: "token" })); @@ -60,6 +62,8 @@ describe('auth-reducer', () => { lastName: "Doe", uuid: "uuid", ownerUuid: "ownerUuid", + identityUrl: "identityUrl", + prefs: {}, isAdmin: false }; @@ -73,6 +77,8 @@ describe('auth-reducer', () => { lastName: "Doe", uuid: "uuid", ownerUuid: "ownerUuid", + identityUrl: "identityUrl", + prefs: {}, isAdmin: false } });