Cleaning up unit tests
This commit is contained in:
parent
e1eb4ed17d
commit
6050f346f6
2 changed files with 1 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue