From acc76bb33047395828d485e0cd960922d73b1304 Mon Sep 17 00:00:00 2001 From: DavidAtSafelite Date: Fri, 28 Jul 2023 12:43:05 -0400 Subject: [PATCH] fixed up the @ issue. --- src/layouts/vehicle-damage/vehicle-damage.spec.js | 2 +- src/layouts/vehicle-lookup/vehicle-lookup.spec.js | 2 +- src/layouts/vehicle-lookup/vehicle-lookup.vue | 2 +- .../vin-location-information.spec.js | 2 +- .../vin-lookup/vin-lookup-alerts/vin-lookup-alerts.vue | 3 ++- src/layouts/vin-lookup/vin-lookup.spec.js | 2 +- src/layouts/vin-lookup/vin-lookup.vue | 6 +++--- 7 files changed, 10 insertions(+), 9 deletions(-) diff --git a/src/layouts/vehicle-damage/vehicle-damage.spec.js b/src/layouts/vehicle-damage/vehicle-damage.spec.js index 33ba0f6a..3d77a71c 100644 --- a/src/layouts/vehicle-damage/vehicle-damage.spec.js +++ b/src/layouts/vehicle-damage/vehicle-damage.spec.js @@ -4,7 +4,7 @@ import { createTestingPinia } from '@pinia/testing'; import { navigationScenarios } from '@/router/router-constants/navigation-scenarios'; import { routerParams } from '@/router/router-params'; import { vehicleCategories } from '@/constants/vehicle-categories'; -import VehicleDamageComponent from './vehicle-damage'; +import VehicleDamageComponent from '@/layouts/vehicle-damage/vehicle-damage'; const mockRoute = { params: {} diff --git a/src/layouts/vehicle-lookup/vehicle-lookup.spec.js b/src/layouts/vehicle-lookup/vehicle-lookup.spec.js index 0720558a..0be30855 100644 --- a/src/layouts/vehicle-lookup/vehicle-lookup.spec.js +++ b/src/layouts/vehicle-lookup/vehicle-lookup.spec.js @@ -11,7 +11,7 @@ import { defineRule } from 'vee-validate'; import { errorMessages } from '@/constants/error-messages'; import globalRules from '@/constants/global-rules'; import { required } from '@/helpers/validation-rules'; -import VehicleLookup from './vehicle-lookup'; +import VehicleLookup from '@/layouts/vehicle-lookup/vehicle-lookup'; const pinia = createTestingPinia(); useMainStore(pinia); diff --git a/src/layouts/vehicle-lookup/vehicle-lookup.vue b/src/layouts/vehicle-lookup/vehicle-lookup.vue index 8ce6573d..2bb2b231 100644 --- a/src/layouts/vehicle-lookup/vehicle-lookup.vue +++ b/src/layouts/vehicle-lookup/vehicle-lookup.vue @@ -51,7 +51,7 @@ import SiteFooter from '@/iss-components/site-footer/site-footer'; import SiteHeader from '@/iss-components/site-header/site-header'; import SiteSubHeader from '@/iss-components/site-sub-header/site-sub-header'; import VehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner'; -import VinLookupMethods from './vin-lookup-methods/vin-lookup-methods'; +import VinLookupMethods from '@/layouts/vehicle-lookup/vin-lookup-methods/vin-lookup-methods'; export default { name: 'vehicle-lookup', diff --git a/src/layouts/vin-lookup/vin-location-information/vin-location-information.spec.js b/src/layouts/vin-lookup/vin-location-information/vin-location-information.spec.js index 4e025768..69c89cd8 100644 --- a/src/layouts/vin-lookup/vin-location-information/vin-location-information.spec.js +++ b/src/layouts/vin-lookup/vin-location-information/vin-location-information.spec.js @@ -5,7 +5,7 @@ import '@testing-library/jest-dom'; import { issPageValues } from '@/router/router-constants/issPage-values'; import { queryStrings } from '@/constants/query-strings'; import { GaActions } from '@/constants/analytics'; -import VinLocationInformationComponent from './vin-location-information'; +import VinLocationInformationComponent from '@/layouts/vin-lookup/vin-location-information/vin-location-information'; const mockText = Object.freeze({ HEADER: 'Mock Header', diff --git a/src/layouts/vin-lookup/vin-lookup-alerts/vin-lookup-alerts.vue b/src/layouts/vin-lookup/vin-lookup-alerts/vin-lookup-alerts.vue index e627e02d..5620a330 100644 --- a/src/layouts/vin-lookup/vin-lookup-alerts/vin-lookup-alerts.vue +++ b/src/layouts/vin-lookup/vin-lookup-alerts/vin-lookup-alerts.vue @@ -16,7 +16,8 @@ import vehicleLookupAlertTypes from '@/constants/vehicle-lookup-alert-types'; import vehicleNotFoundAlert from '@/layouts/vin-lookup/vin-lookup-alerts/vehicle-not-found-alert/vehicle-not-found-alert'; import vehicleNotMatchedAlert from '@/layouts/vin-lookup/vin-lookup-alerts/vehicle-not-matched-alert/vehicle-not-matched-alert'; -import twoIdenticalYMMVehicleAlert from '@/layouts/vin-lookup/vin-lookup-alerts/two-identical-ymm-vehicle-alert/two-identical-ymm-vehicle-alert'; +import twoIdenticalYMMVehicleAlert from + '@/layouts/vin-lookup/vin-lookup-alerts/two-identical-ymm-vehicle-alert/two-identical-ymm-vehicle-alert'; import perfectMatchAlert from '@/layouts/vin-lookup/vin-lookup-alerts//perfect-match-alert/perfect-match-alert'; export default { diff --git a/src/layouts/vin-lookup/vin-lookup.spec.js b/src/layouts/vin-lookup/vin-lookup.spec.js index f6232f7d..7bce62f8 100644 --- a/src/layouts/vin-lookup/vin-lookup.spec.js +++ b/src/layouts/vin-lookup/vin-lookup.spec.js @@ -11,7 +11,7 @@ import { GaActions } from '@/constants/analytics'; import { navigationScenarios } from '@/router/router-constants/navigation-scenarios'; import { routerParams } from '@/router/router-params'; import { useMainStore } from '@/store'; -import VinLookupComponent from './vin-lookup'; +import VinLookupComponent from '@/layouts/vin-lookup/vin-lookup'; const continueButtonQuerySelector = '[data-test-id="site-footer-main-button"]'; const errorMessageWrapperElSelector = '#vin-question-wrapper .form-test-error'; diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index d94a85cd..c0df63e8 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -60,9 +60,9 @@ import siteFooter from '@/iss-components/site-footer/site-footer'; import siteHeader from '@/iss-components/site-header/site-header'; import siteSubHeader from '@/iss-components/site-sub-header/site-sub-header'; import vehicleBanner from '@/iss-components/vehicle-banner/vehicle-banner'; -import vinLocationInformation from './vin-location-information/vin-location-information'; -import vinLookupAlerts from './vin-lookup-alerts/vin-lookup-alerts'; -import vinQuestion from './vin-question/vin-question'; +import vinLocationInformation from '@/layouts/vin-lookup/vin-location-information/vin-location-information'; +import vinLookupAlerts from '@/layouts/vin-lookup/vin-lookup-alerts/vin-lookup-alerts'; +import vinQuestion from '@/layouts/vin-lookup/vin-question/vin-question'; export default { name: 'vin-lookup',