diff --git a/jest.config.js b/jest.config.js index 631d0b9c4..c1edf3074 100644 --- a/jest.config.js +++ b/jest.config.js @@ -34,7 +34,7 @@ module.exports = { testMatch: ["**/*.spec.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)"], coverageThreshold: { global: { - statements: 88, + statements: 87, // Got the go ahead from Mark to temporarily lower this. Taking out initialize component made the year,make,model and style coverage drop a bit. Once unit tests for license plate lookup, vin lookup and address lookup are in the coverage should go back up to 90 }, }, diff --git a/src/common-components/button-question/button-question.vue b/src/common-components/button-question/button-question.vue index b46d933c0..79937c780 100644 --- a/src/common-components/button-question/button-question.vue +++ b/src/common-components/button-question/button-question.vue @@ -160,6 +160,7 @@ export default { .overflow-scroll { // Height will be determined by overall height of content above list height: calc(100% - 300px); + overflow-x: hidden !important; -webkit-overflow-scrolling: touch; } } diff --git a/src/common-components/funnel-footer/funnel-footer.vue b/src/common-components/funnel-footer/funnel-footer.vue index 62b7d9147..cea6b403e 100644 --- a/src/common-components/funnel-footer/funnel-footer.vue +++ b/src/common-components/funnel-footer/funnel-footer.vue @@ -126,5 +126,8 @@ export default { justify-content: flex-start; } } + & > .container-fluid { + overflow-x: visible; // needed to fix hidden footer on some iphones + } } diff --git a/src/helpers/heritage-integration/navigation-helper.js b/src/helpers/heritage-integration/navigation-helper.js index 974bff7cb..77d6abe92 100644 --- a/src/helpers/heritage-integration/navigation-helper.js +++ b/src/helpers/heritage-integration/navigation-helper.js @@ -43,10 +43,10 @@ export async function getPageToRouteExistingOrderTo(toRoute = {}, existingHerita return 'vehicle-damage' } else { if (store.getters.vehicle.vin) { - return 'heritage'; + return 'vehicle-damage'; //return "vin-lookup"; (uncomment) } else { - return 'heritage'; + return 'vehicle-damage'; //return "estimate" (uncomment) } } diff --git a/src/helpers/heritage-integration/navigation-helper.spec.js b/src/helpers/heritage-integration/navigation-helper.spec.js index 44f087b64..be1136e63 100644 --- a/src/helpers/heritage-integration/navigation-helper.spec.js +++ b/src/helpers/heritage-integration/navigation-helper.spec.js @@ -229,7 +229,7 @@ describe("getPageToRouteExistingOrderTo", () => { //Assert //expect(result).toBe('vin-lookup'); - expect(result).toBe('heritage'); + expect(result).toBe('vehicle-damage'); }); test("getPageToRouteExistingOrderTo, should return estimate", async () => { @@ -285,7 +285,7 @@ describe("getPageToRouteExistingOrderTo", () => { //Assert //expect(result).toBe('estimate'); - expect(result).toBe('heritage'); + expect(result).toBe('vehicle-damage'); }); test("getPageToRouteExistingOrderTo, existing order, should return heritage", async () => { diff --git a/src/layouts/vehicle-damage/replace-options-question/replace-options-question.vue b/src/layouts/vehicle-damage/replace-options-question/replace-options-question.vue index df0fefb60..e2a6bb426 100644 --- a/src/layouts/vehicle-damage/replace-options-question/replace-options-question.vue +++ b/src/layouts/vehicle-damage/replace-options-question/replace-options-question.vue @@ -1,6 +1,6 @@