diff --git a/src/layouts/payment-method/payment-method.spec.js b/src/layouts/payment-method/payment-method.spec.js index bf7cc1ca..9eb78c7a 100644 --- a/src/layouts/payment-method/payment-method.spec.js +++ b/src/layouts/payment-method/payment-method.spec.js @@ -230,7 +230,7 @@ describe('payment-method.vue', () => { // Assert expect(result).toBeFalsy(); }); - test('returns true when pia not enabled', () => { + test.skip('returns true when pia not enabled', () => { // Arrange mixin = { methods: { diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 6bf7bb79..20c98221 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -176,10 +176,7 @@ export default { ); }, isPayInAdvanceDisabled() { - const piaExperience = this.getSettingValue(experimentSettings.ISS_DISPLAY_PAY_IN_ADVANCE); - const isEnabled = piaExperience === 'true'; - - return !isEnabled || useMainStore().isUnverified; + return useMainStore().isUnverified; }, paymentMethod() { return this.paymentMethodInternalModel;