From 6050f346f6cf7d9134f6f456143717e23353d670 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 17 Dec 2021 09:07:19 -0500 Subject: [PATCH] Cleaning up unit tests --- src/layouts/vehicle-make/make-question/make-question.vue | 1 - src/layouts/vehicle-make/vehicle-make.spec.js | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/layouts/vehicle-make/make-question/make-question.vue b/src/layouts/vehicle-make/make-question/make-question.vue index 8edb13152..765c7a542 100644 --- a/src/layouts/vehicle-make/make-question/make-question.vue +++ b/src/layouts/vehicle-make/make-question/make-question.vue @@ -30,7 +30,6 @@ export default { }, methods: { loadInitialData() { - console.log(store); return store.dispatch(storeActions.GET_VEHICLE_MAKES, {year: store.getters.vehicle.year}); }, initializeComponent(cmsContent, initialData) { diff --git a/src/layouts/vehicle-make/vehicle-make.spec.js b/src/layouts/vehicle-make/vehicle-make.spec.js index 0f46067e4..c184595f1 100644 --- a/src/layouts/vehicle-make/vehicle-make.spec.js +++ b/src/layouts/vehicle-make/vehicle-make.spec.js @@ -15,7 +15,7 @@ describe("vehicle-make.vue", () => { //Arange const radioQuestionCmsContent = { QuestionText: "What make is your vehicle?" }; - const makeQuestionInitialData = ["2023", "2022", "2021"]; + const makeQuestionInitialData = ["honda", "ford", "dodge"]; const { wrapper, apiPromise } = setupMocks( { radioQuestionCmsContent: radioQuestionCmsContent, makeQuestionInitialData: makeQuestionInitialData,