X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/24ddc06cb04b124d337e91c190230bfad83e490b..5a7f3f56fc39ab231982435d29b8f15e819748fe:/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 dc399cfcfe..2b28cd0891 100644 --- a/src/store/auth/auth-actions.test.ts +++ b/src/store/auth/auth-actions.test.ts @@ -3,7 +3,7 @@ // SPDX-License-Identifier: AGPL-3.0 import { authReducer, AuthState } from "./auth-reducer"; -import { AuthAction, authActions, initAuth } from "./auth-action"; +import { AuthAction, initAuth } from "./auth-action"; import { API_TOKEN_KEY, USER_EMAIL_KEY, @@ -16,16 +16,16 @@ import { import 'jest-localstorage-mock'; import { createServices } from "../../services/services"; import { configureStore, RootStore } from "../store"; -import createBrowserHistory from "../../../node_modules/@types/history/createBrowserHistory"; +import createBrowserHistory from "history/createBrowserHistory"; describe('auth-actions', () => { let reducer: (state: AuthState | undefined, action: AuthAction) => any; let store: RootStore; beforeEach(() => { - store = configureStore(createBrowserHistory(), createServices("/arvados/v1")); + store = configureStore(createBrowserHistory(), createServices({ API_HOST: "/arvados/v1", KEEP_WEB_HOST: "" })); localStorage.clear(); - reducer = authReducer(createServices("/arvados/v1")); + reducer = authReducer(createServices({ API_HOST: "/arvados/v1", KEEP_WEB_HOST: "" })); }); it('should initialise state with user and api token from local storage', () => { @@ -51,6 +51,7 @@ describe('auth-actions', () => { }); }); + // TODO: Add remaining action tests /* it('should fire external url to login', () => { const initialState = undefined;