Removing old tests

This commit is contained in:
Michaela Brydon 2024-07-17 13:38:40 -04:00
parent ccba1d7a7c
commit 9c7baa0bd9

View file

@ -122,16 +122,6 @@ describe('TPAConfirmation.vue', () => {
// Assert
expect(bodyTwo.exists()).toBe(true);
});
test('Should render Contact Carrier text', () => {
// Arrange
const { wrapper } = getMountedComponent({});
// Act
const contactCarrierText = wrapper.findComponent({ ref: 'contactCarrierText' });
// Assert
expect(contactCarrierText.exists()).toBe(true);
});
test('Should render Order Details title', () => {
// Arrange
const { wrapper } = getMountedComponent({});
@ -313,19 +303,6 @@ describe('TPAConfirmation.vue', () => {
});
});
});
describe('setBailoutInfo', () => {
test('setBailout method is called when routerLink clicked', async () => {
// Arrange
const { wrapper } = getMountedComponent({});
const contactCarrierText = wrapper.get('#contactCarrierText');
// Act
await contactCarrierText.trigger('click');
// Assert
expect(wrapper.vm.mainStore.setBailout).toHaveBeenCalledWith(bailoutMessage.RequestCallback);
});
});
describe('Navigation', () => {
test('If Advanced flow, forward button action navigates to carrier URL', () => {
// Arrange