Removing comments

This commit is contained in:
Michaela Brydon 2024-04-02 11:40:19 -04:00
parent 8328a1f14e
commit e30940220e

View file

@ -1677,17 +1677,7 @@ describe('cart-dropdown component', () => {
describe('getDisplayed', () => {
test('returns "Verifying coverage" when not no comp, not itac, and deductible null', () => {
// Arrange
// const storeData = {
// order: {
// policy: {
// noCoverage: false,
// isITAC: false
// },
// currentDeductible: null
// }
// };
const storeData = getDefaultState();
// storeData.order.payment.insuranceCoverage.coverageStatus = coverageStatuses.VERIFIED;
storeData.order.policy.noCoverage = false;
storeData.order.policy.isITAC = false;
storeData.order.currentDeductible = null;
@ -1703,17 +1693,7 @@ describe('cart-dropdown component', () => {
});
test('returns "Verifying coverage" when not no comp, not itac, and coverage status PENDING', () => {
// Arrange
// const storeData = {
// order: {
// policy: {
// noCoverage: false,
// isITAC: false
// },
// currentDeductible: 321
// }
// };
const storeData = getDefaultState();
// storeData.order.payment.insuranceCoverage.coverageStatus = coverageStatuses.PENDING;
storeData.order.policy.noCoverage = false;
storeData.order.policy.isITAC = false;
storeData.order.currentDeductible = 321;