diff --git a/src/iss-components/cart-dropdown/cart-dropdown.spec.js b/src/iss-components/cart-dropdown/cart-dropdown.spec.js index a5a59a15..0d2e5d3e 100644 --- a/src/iss-components/cart-dropdown/cart-dropdown.spec.js +++ b/src/iss-components/cart-dropdown/cart-dropdown.spec.js @@ -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', () => {