diff --git a/src/store/index.js b/src/store/index.js index f29fba5de..bac95e3cf 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -504,19 +504,6 @@ export const actions = { context.commit(storeMutations.UPDATE_CRM_CUSTOMER_ID, crmCustomerId); }, - logExperimentExposure(context, { userId, sessionKey, pageName, universeName }) { - return globalMethods.callHttpClient({ - method: endpoints.LogExperimentExposureIfAssigned.method, - endpoint: endpoints.LogExperimentExposureIfAssigned.url, - payload: { - userId: userId, - sessionKey: sessionKey, - pageName: pageName, - universeName: universeName - } - }); - }, - logPageView(context, { userId, sessionKey, pageName, sessionId, action, event, shouldUseSessionId }) { var payload = { userId: userId, diff --git a/src/store/store.spec.js b/src/store/store.spec.js index 3cd3e768f..a9e37dea7 100644 --- a/src/store/store.spec.js +++ b/src/store/store.spec.js @@ -571,12 +571,17 @@ describe("Actions", () => { registration: {} }, damage: {}, + applicationUser: { + lastPageVisited: "test-page", + crmCustomerId: "xxx-xxx-xxx", + saveQuoteId: "xxx-xxx-xxx" + } }; context.state = { order: { serviceLocation: {}, customer: {} - } + }, }; globalMethods.callHttpClient.mockImplementation(() => {