X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/37e43f4e19ad2bd27b15fe7f0d857218dad39055..c038a5258d5790773ccca89a192c8c2b7dcd86cb:/src/store/auth/auth-actions.test.ts diff --git a/src/store/auth/auth-actions.test.ts b/src/store/auth/auth-actions.test.ts index dd928e0a..a1cd7f4f 100644 --- a/src/store/auth/auth-actions.test.ts +++ b/src/store/auth/auth-actions.test.ts @@ -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', () => { @@ -72,3 +78,5 @@ describe('auth-actions', () => { }); */ }); + +