Removing comments
This commit is contained in:
parent
8328a1f14e
commit
e30940220e
1 changed files with 0 additions and 20 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue