X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/6f8e509988756deb7e05a760e718d1ade164fd19..e952a4d2fac7c75375a9307f7f6676bd950bd0ed:/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 46d28354..a1cd7f4f 100644 --- a/src/store/auth/auth-actions.test.ts +++ b/src/store/auth/auth-actions.test.ts @@ -18,16 +18,20 @@ 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 progressFn = (id: string, working: boolean) => {}; + const actions: ApiActions = { + progressFn: (id: string, working: boolean) => {}, + errorFn: (id: string, message: string) => {} + }; beforeEach(() => { - store = configureStore(createBrowserHistory(), createServices(mockConfig({}), progressFn)); + store = configureStore(createBrowserHistory(), createServices(mockConfig({}), actions)); localStorage.clear(); - reducer = authReducer(createServices(mockConfig({}), progressFn)); + reducer = authReducer(createServices(mockConfig({}), actions)); }); it('should initialise state with user and api token from local storage', () => {