diff --git a/src/digital-components/textarea-question/textarea-question.spec.js b/src/digital-components/textarea-question/textarea-question.spec.js index e56412ae..1ca01d3a 100644 --- a/src/digital-components/textarea-question/textarea-question.spec.js +++ b/src/digital-components/textarea-question/textarea-question.spec.js @@ -1,12 +1,12 @@ // Components -import textareaQuestion from '@/digital-components/textarea-question/textarea-question.vue'; +import textareaQuestion from '@/digital-components/textarea-question/textarea-question'; // Supporting Files import { shallowMount } from '@vue/test-utils'; -import { getRandomString, getRandomInt } from '@/helpers/data-generation'; +import { getRandomString, getRandomInt } from '@/helpers/data-generation.js'; import { nextTick } from 'vue'; import { defineRule } from 'vee-validate'; -import { required } from '@/helpers/validation-rules'; +import { required } from '@/helpers/validation-rules.js'; describe('textarea-question.vue', () => { const mockMixin = { diff --git a/src/layouts/contact-details/contact-details.spec.js b/src/layouts/contact-details/contact-details.spec.js index 211ba840..19434095 100644 --- a/src/layouts/contact-details/contact-details.spec.js +++ b/src/layouts/contact-details/contact-details.spec.js @@ -1,13 +1,13 @@ // Components -import contactDetails from '@/layouts/contact-details/contact-details.vue'; +import contactDetails from '@/layouts/contact-details/contact-details'; // Supporting Files import { shallowMount } from '@vue/test-utils'; -import { getMountOptions } from '@/helpers/unit-test-helper'; -import { getRandomString, getRandomInt, getRandomBoolean } from '@/helpers/data-generation'; +import { getMountOptions } from '@/helpers/unit-test-helper.js'; +import { getRandomString, getRandomInt, getRandomBoolean } from '@/helpers/data-generation.js'; import { createTestingPinia } from '@pinia/testing'; -import { navigationScenarios } from '@/router/router-constants/navigation-scenarios'; -import { useMainStore } from '@/store/index'; +import { navigationScenarios } from '@/router/router-constants/navigation-scenarios.js'; +import { useMainStore } from '@/store/index.js'; describe('contactDetails.vue', () => { describe('Rendering', () => { diff --git a/src/layouts/contact-details/contact-details.vue b/src/layouts/contact-details/contact-details.vue index da19beff..a7071ee3 100644 --- a/src/layouts/contact-details/contact-details.vue +++ b/src/layouts/contact-details/contact-details.vue @@ -99,20 +99,20 @@