diff --git a/src/layouts/vehicle-lookup/vehicle-lookup.spec.js b/src/layouts/vehicle-lookup/vehicle-lookup.spec.js index 2181213d..2d60532e 100644 --- a/src/layouts/vehicle-lookup/vehicle-lookup.spec.js +++ b/src/layouts/vehicle-lookup/vehicle-lookup.spec.js @@ -198,8 +198,6 @@ describe('vehicle-lookup.vue', () => { answersFromCms: vinLookupMethodsMockData.Answers }); - useMainStore().updateVehicleVin = jest.fn(); - const lookupByManualVinOptionLabel = wrapper .find('[data-test-id="vin-lookup-methods-button-question"] label[for="VinLookupMethods-ManualVin"]'); await lookupByManualVinOptionLabel.trigger('mousedown'); diff --git a/src/store/index.js b/src/store/index.js index ab7ced30..4a911552 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1748,10 +1748,6 @@ export const useMainStore = defineStore({ this.order.originalDeductible = coverage.deductible; this.order.currentDeductible = coverage.deductible; }, - // TODO do we need to reset vehicle info when this is called? - updateVehicleVin(vin) { - this.order.vehicle.vin = vin; - }, resetOrder() { this.order.referralNumber = null;