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', () => {
|
describe('getDisplayed', () => {
|
||||||
test('returns "Verifying coverage" when not no comp, not itac, and deductible null', () => {
|
test('returns "Verifying coverage" when not no comp, not itac, and deductible null', () => {
|
||||||
// Arrange
|
// Arrange
|
||||||
// const storeData = {
|
|
||||||
// order: {
|
|
||||||
// policy: {
|
|
||||||
// noCoverage: false,
|
|
||||||
// isITAC: false
|
|
||||||
// },
|
|
||||||
// currentDeductible: null
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
const storeData = getDefaultState();
|
const storeData = getDefaultState();
|
||||||
// storeData.order.payment.insuranceCoverage.coverageStatus = coverageStatuses.VERIFIED;
|
|
||||||
storeData.order.policy.noCoverage = false;
|
storeData.order.policy.noCoverage = false;
|
||||||
storeData.order.policy.isITAC = false;
|
storeData.order.policy.isITAC = false;
|
||||||
storeData.order.currentDeductible = null;
|
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', () => {
|
test('returns "Verifying coverage" when not no comp, not itac, and coverage status PENDING', () => {
|
||||||
// Arrange
|
// Arrange
|
||||||
// const storeData = {
|
|
||||||
// order: {
|
|
||||||
// policy: {
|
|
||||||
// noCoverage: false,
|
|
||||||
// isITAC: false
|
|
||||||
// },
|
|
||||||
// currentDeductible: 321
|
|
||||||
// }
|
|
||||||
// };
|
|
||||||
const storeData = getDefaultState();
|
const storeData = getDefaultState();
|
||||||
// storeData.order.payment.insuranceCoverage.coverageStatus = coverageStatuses.PENDING;
|
|
||||||
storeData.order.policy.noCoverage = false;
|
storeData.order.policy.noCoverage = false;
|
||||||
storeData.order.policy.isITAC = false;
|
storeData.order.policy.isITAC = false;
|
||||||
storeData.order.currentDeductible = 321;
|
storeData.order.currentDeductible = 321;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue