final fixes

This commit is contained in:
Katie Kroell 2024-01-25 16:31:56 -05:00
parent 383d93e561
commit 0603c37adc
2 changed files with 3 additions and 7 deletions

View file

@ -2,17 +2,13 @@
import tpaConfirmation from '@/layouts/tpa-confirmation/tpa-confirmation.vue';
// Supporting Files
// import baseMixin from '@/mixins/base-mixin';
import { getMountOptions } from '@/helpers/unit-test-helper.js';
// import navigationScenarios from '@/router/router-constants/navigation-scenarios.js';
import { useMainStore } from '@/store/index.js';
import settleAllPromises from '@/helpers/layout-helper.js';
import { fetchCmsContentForPage } from '@/helpers/cms-content-helper';
import { mount } from '@vue/test-utils';
import { createTestingPinia } from '@pinia/testing';
import userEvent from '@testing-library/user-event';
import bailoutMessage from '@/constants/bailoutMessage';
import { render } from '@testing-library/vue';
jest.mock('@/helpers/layout-helper.js', () => jest.fn());
@ -328,10 +324,10 @@ describe('TPAConfirmation.vue', () => {
};
const { wrapper } = getMountedComponent(initialStore);
const argument = 'verifyingCoverage';
// Act
const result = wrapper.vm.getCustomValueFromString(argument);
// Assert
expect(result).toBe(expected);
}

View file

@ -173,7 +173,7 @@ export default {
carrierName() {
return this.mainStore.issConfig.clientName;
},
// TODO: Replace with actual carrier homepage URL
// TODO: Replace with actual carrier URL
carrierUrl() {
return '//www.libertymutual.com';
}