From 818ca49af7e85dea2ac83f19b7a4daaaf2861fad Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Fri, 30 Jun 2023 14:36:30 -0400 Subject: [PATCH] Removed testing code and uncommented real code --- .../service-location-helper.spec.js | 1 - .../shop-question/shop-list-button/shop-list-button.vue | 9 ++++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/layouts/service-location/helpers/service-location-helper/service-location-helper.spec.js b/src/layouts/service-location/helpers/service-location-helper/service-location-helper.spec.js index 676541784..6b530fddb 100644 --- a/src/layouts/service-location/helpers/service-location-helper/service-location-helper.spec.js +++ b/src/layouts/service-location/helpers/service-location-helper/service-location-helper.spec.js @@ -189,7 +189,6 @@ jest.mock("@/mixins/base-mixin.js", () => ({ } if (actionName === mockStoreActionGetShopTimeSlots) { - console.log(request); if (request.providerNumber == "0000001") { return Promise.resolve(mockGetShopTimeSlotsGoodAvailability); } diff --git a/src/layouts/service-location/shop-question/shop-list-button/shop-list-button.vue b/src/layouts/service-location/shop-question/shop-list-button/shop-list-button.vue index 6eb34382e..df80fdffa 100644 --- a/src/layouts/service-location/shop-question/shop-list-button/shop-list-button.vue +++ b/src/layouts/service-location/shop-question/shop-list-button/shop-list-button.vue @@ -73,11 +73,10 @@ export default { }, computed: { displayAvailabilityIndicators() { - return true; //TODO: REMOVE THIS - // return experimentMixin.methods.hasSettingEqualTo( - // experimentSettings.DISPLAY_AVAILABILITY_INDICATORS, - // "true" - // ); + return experimentMixin.methods.hasSettingEqualTo( + experimentSettings.DISPLAY_AVAILABILITY_INDICATORS, + "true" + ); }, isLoaderDisplayed() { return this.availabilityRating == null;