refs #master Merge branch 'origin/master' into 14280-query-language
[arvados-workbench2.git] / src / store / auth / auth-actions.test.ts
index dd928e0a27a152c75b7a245c6cebcbdcba3cb3d6..231c37b4effc6c2587bd4c1289c434cd7b0d1e83 100644 (file)
@@ -17,15 +17,21 @@ import 'jest-localstorage-mock';
 import { createServices } from "~/services/services";
 import { configureStore, RootStore } from "../store";
 import createBrowserHistory from "history/createBrowserHistory";
+import { mockConfig } from '~/common/config';
+import { ApiActions } from "~/services/api/api-actions";
 
 describe('auth-actions', () => {
     let reducer: (state: AuthState | undefined, action: AuthAction) => any;
     let store: RootStore;
+    const actions: ApiActions = {
+        progressFn: (id: string, working: boolean) => {},
+        errorFn: (id: string, message: string) => {}
+    };
 
     beforeEach(() => {
-        store = configureStore(createBrowserHistory(), createServices("/arvados/v1"));
+        store = configureStore(createBrowserHistory(), createServices(mockConfig({}), actions));
         localStorage.clear();
-        reducer = authReducer(createServices("/arvados/v1"));
+        reducer = authReducer(createServices(mockConfig({}), actions));
     });
 
     it('should initialise state with user and api token from local storage', () => {
@@ -41,6 +47,7 @@ describe('auth-actions', () => {
 
         expect(store.getState().auth).toEqual({
             apiToken: "token",
+            sshKeys: [],
             user: {
                 email: "test@test.com",
                 firstName: "John",
@@ -72,3 +79,5 @@ describe('auth-actions', () => {
     });
     */
 });
+
+