Cleaning up unit tests

This commit is contained in:
Max 2021-12-17 09:07:19 -05:00
parent e1eb4ed17d
commit 6050f346f6
2 changed files with 1 additions and 2 deletions

View file

@ -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) {

View file

@ -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,