X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/fbec771115f1872bdadc0572a5c5059be68f1aca..1e32e6134cd53c30cd8a9410572a443b37f76f2e:/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 1ded88ea..4ac48a0b 100644 --- a/src/store/auth/auth-actions.test.ts +++ b/src/store/auth/auth-actions.test.ts @@ -11,21 +11,22 @@ import { USER_LAST_NAME_KEY, USER_OWNER_UUID_KEY, USER_UUID_KEY -} from "../../services/auth-service/auth-service"; +} from "~/services/auth-service/auth-service"; import 'jest-localstorage-mock'; -import { createServices } from "../../services/services"; +import { createServices } from "~/services/services"; import { configureStore, RootStore } from "../store"; import createBrowserHistory from "history/createBrowserHistory"; +import { mockConfig } from '~/common/config'; 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(mockConfig({}))); localStorage.clear(); - reducer = authReducer(createServices("/arvados/v1")); + reducer = authReducer(createServices(mockConfig({}))); }); it('should initialise state with user and api token from local storage', () => { @@ -72,3 +73,5 @@ describe('auth-actions', () => { }); */ }); + +