Deleting duplicate test

This commit is contained in:
Michaela Brydon 2024-03-25 15:48:46 -04:00
parent 49aad2c509
commit ab8a227d00

View file

@ -213,25 +213,6 @@ describe('cart-dropdown component', () => {
// Assert
expect(bottomAmountDue.exists()).toBeTruthy();
});
test('Hides recycle fee when not in supported items', () => {
// Arrange
const reference = '#mobile-fee-item';
const { wrapper } = getMountedComponent({
order: {
lineItems: {
supportingItems: [],
mobileFee: null
}
}
});
// Act
const cartDeductible = wrapper.find(reference);
// Assert
expect(wrapper.vm.mobileFeeCartItem).toBeNull();
expect(cartDeductible.exists()).toBeFalsy();
});
});
describe('does not display', () => {
test('cart deductible when showDeductibleLineItem is false', () => {