diff --git a/config/features.yml b/config/features.yml index 2e2461e30e1..d1d22b84f38 100644 --- a/config/features.yml +++ b/config/features.yml @@ -1953,7 +1953,10 @@ features: enabled_in_development: true remove_pciu: actor_type: user - description: If enabled, VA Profile is used to populate contact information- without PCIU calls (status quo) + description: If enabled, VA Profile is used to populate contact information with PCIU backup calls + remove_pciu_2: + actor_type: user + description: If enabled, removes all PCIU requests in form pre-fill. show_yellow_ribbon_table: actor_type: user description: Used to show yellow ribbon table in Comparison Tool @@ -1997,5 +2000,3 @@ features: show_rudisill_1995: actor_type: user description: If enabled, show rudisill review in 22-1995 - - diff --git a/spec/models/form_profile_spec.rb b/spec/models/form_profile_spec.rb index a50f1be602e..87f15b14c75 100644 --- a/spec/models/form_profile_spec.rb +++ b/spec/models/form_profile_spec.rb @@ -14,6 +14,9 @@ Flipper.disable(:remove_pciu) stub_evss_pciu(user) described_class.instance_variable_set(:@mappings, nil) + Flipper.disable(:va_v3_contact_information_service) + Flipper.disable(:remove_pciu) + Flipper.disable('remove_pciu_2') Flipper.disable(:disability_526_toxic_exposure) Flipper.disable(ApiProviderFactory::FEATURE_TOGGLE_PPIU_DIRECT_DEPOSIT) end diff --git a/spec/requests/v0/in_progress_forms_controller_spec.rb b/spec/requests/v0/in_progress_forms_controller_spec.rb index f60caf831d7..e7cf33557c3 100644 --- a/spec/requests/v0/in_progress_forms_controller_spec.rb +++ b/spec/requests/v0/in_progress_forms_controller_spec.rb @@ -133,6 +133,10 @@ end describe '#show' do + before do + Flipper.disable('remove_pciu_2') + end + let(:user) { build(:user, :loa3, address: build(:mpi_profile_address)) } let!(:in_progress_form) { create(:in_progress_form, :with_nested_metadata, user_uuid: user.uuid) }