Skip to content

Commit 25b3322

Browse files
authored
Skip StateFile feature specs (#6156)
1 parent 1ac313e commit 25b3322

11 files changed

+58
-61
lines changed

spec/features/state_file/coming_soon_spec.rb

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
context "before the StateFile launch time (state_file_start_of_open_intake)" do
99
let(:fake_time_before_launch) { Time.utc(2023, 12, 22, 0, 0, 0) }
1010

11-
it "redirects to the coming-soon page" do
11+
xit "redirects to the coming-soon page" do
1212
Timecop.freeze(fake_time_before_launch) do
1313
visit "/"
1414
end
@@ -19,15 +19,12 @@
1919

2020
context "visiting the coming soon page after StateFile launch time (state_file_start_of_open_intake)" do
2121
let(:fake_time_after_launch) { Time.utc(2024, 1, 2, 0, 0, 0) } # only for non-prod, in prod this date is set to 2/5/2024 8am
22-
it "redirects to the home page" do
22+
xit "redirects to the home page" do
2323
Timecop.freeze(fake_time_after_launch) do
2424
visit "/coming-soon"
2525
end
2626

2727
expect(page).to have_text I18n.t('state_file.state_file_pages.about_page.header')
2828
end
2929
end
30-
31-
# can vist the session toggles page
32-
# can visit the hub
3330
end

spec/features/state_file/complete_intake_spec.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
allow(Flipper).to receive(:enabled?).with(:extension_period).and_return(true)
2222
end
2323

24-
it "has content", required_schema: "az" do
24+
xit "has content", required_schema: "az" do
2525
visit "/"
2626
click_on "Start Test AZ"
2727

@@ -208,7 +208,7 @@
208208
allow(Flipper).to receive(:enabled?).with(:extension_period).and_return(true)
209209
end
210210

211-
it "has content", required_schema: "nc" do
211+
xit "has content", required_schema: "nc" do
212212
visit "/"
213213
click_on "Start Test NC"
214214

@@ -359,7 +359,7 @@
359359
allow(Flipper).to receive(:enabled?).with(:extension_period).and_return(true)
360360
end
361361

362-
it "has content", required_schema: "id" do
362+
xit "has content", required_schema: "id" do
363363
visit "/"
364364
click_on "Start Test ID"
365365

@@ -503,7 +503,7 @@
503503
allow(Flipper).to receive(:enabled?).with(:extension_period).and_return(true)
504504
end
505505

506-
it "has content", required_schema: "md" do
506+
xit "has content", required_schema: "md" do
507507
visit "/"
508508
click_on "Start Test MD"
509509

@@ -648,7 +648,7 @@
648648

649649
context "deprecated" do
650650
context "NY" do
651-
it "doesn't allow filers in anymore and redirects all pages to landing page" do
651+
xit "doesn't allow filers in anymore and redirects all pages to landing page" do
652652
visit "/"
653653
click_on "Start Test NY"
654654

@@ -673,7 +673,7 @@
673673
login_as(intake, scope: :state_file_nc_intake)
674674
end
675675

676-
it "shows closed page when logged in" do
676+
xit "shows closed page when logged in" do
677677
# try to log in with existing ny intake and get redirected
678678
visit "/questions/return-status"
679679
page_change_check(I18n.t("state_file.landing_page.ny_closed.title"))

spec/features/state_file/data_transfer_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Flipper.enable :sms_notifications
1010
end
1111

12-
it "advances past the loading screen by listening for an actioncable broadcast", js: true do
12+
xit "advances past the loading screen by listening for an actioncable broadcast", js: true do
1313
visit "/"
1414
click_on "Start Test AZ"
1515

spec/features/state_file/edit_return_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
allow(VerificationCodeService).to receive(:hash_verification_code_with_contact_info).with(email_address, verification_code).and_return(hashed_verification_code)
6969
end
7070

71-
scenario "edit your state return from the return status page with an auto-wait error" do
71+
xscenario "edit your state return from the return status page with an auto-wait error" do
7272
visit "/login-options"
7373
expect(page).to have_text "Sign in to FileYourStateTaxes"
7474
click_on "Sign in with email"

spec/features/state_file/editing_df_xml_spec.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Flipper.enable :sms_notifications
1212
end
1313

14-
it "does not modify the df xml if nothing was changed" do
14+
xit "does not modify the df xml if nothing was changed" do
1515
visit "/"
1616
click_on "Start Test AZ"
1717

@@ -43,7 +43,7 @@
4343
expect(xml_before).to eq(xml_after)
4444
end
4545

46-
it "allows you to edit the df xml" do
46+
xit "allows you to edit the df xml" do
4747
visit "/"
4848
click_on "Start Test AZ"
4949

@@ -140,7 +140,7 @@
140140
expect(StateFileAzIntake.last.state_file1099_rs[0].state_tax_withheld_amount).to eq 20
141141
end
142142

143-
it "preserves W2 when XML Editor is opened without changes" do
143+
xit "preserves W2 when XML Editor is opened without changes" do
144144
visit "/"
145145
click_on "Start Test NC"
146146

spec/features/state_file/id_grocery_credit_nested_followups_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
end
1212

1313
context "ID", js: true do
14-
it "doesn't generate additional dependents", required_schema: "id" do
14+
xit "doesn't generate additional dependents", required_schema: "id" do
1515
visit "/"
1616
click_on "Start Test ID"
1717

spec/features/state_file/income_review_spec.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def advance_to_income_edit
3636
all('a', text: I18n.t("state_file.questions.income_review.edit.review_and_edit_state_info"))[1].click
3737
end
3838

39-
it "displays review and edit pages with w2s, unemployment, and social security income" do
39+
xit "displays review and edit pages with w2s, unemployment, and social security income" do
4040
advance_to_data_transfer
4141

4242
step_through_df_data_transfer("Transfer O neal walker catchall mfj")
@@ -60,7 +60,7 @@ def advance_to_income_edit
6060
end
6161
end
6262

63-
it "displays w2 info on edit screen" do
63+
xit "displays w2 info on edit screen" do
6464
advance_to_income_edit
6565

6666
expect(page).to be_axe_clean
@@ -73,7 +73,7 @@ def advance_to_income_edit
7373
expect(page).to have_button(I18n.t("state_file.questions.w2.edit.what_is_box14_nj"))
7474
end
7575

76-
it "allows ui_wf_swf and fli to be saved up to the limit" do
76+
xit "allows ui_wf_swf and fli to be saved up to the limit" do
7777
advance_to_income_edit
7878

7979
fill_in 'state_file_w2_box14_ui_wf_swf', with: NjTestConstHelper::UI_WF_SWF_AT_LIMIT.to_s
@@ -83,7 +83,7 @@ def advance_to_income_edit
8383
expect(page).to have_text I18n.t("state_file.questions.income_review.edit.title")
8484
end
8585

86-
it "does not allow ui_wf_swf to be saved above limit" do
86+
xit "does not allow ui_wf_swf to be saved above limit" do
8787
advance_to_income_edit
8888

8989
fill_in 'state_file_w2_box14_ui_wf_swf', with: NjTestConstHelper::UI_WF_SWF_ABOVE_LIMIT.to_s
@@ -93,7 +93,7 @@ def advance_to_income_edit
9393
expect(page).to have_text("This amount can't exceed $180.00.")
9494
end
9595

96-
it "does not allow fli to be saved above limit" do
96+
xit "does not allow fli to be saved above limit" do
9797
advance_to_income_edit
9898

9999
fill_in 'state_file_w2_box14_ui_wf_swf', with: NjTestConstHelper::UI_WF_SWF_AT_LIMIT.to_s

spec/features/state_file/nc/sales_use_tax_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
intake.synchronize_filers_to_database
2626
end
2727

28-
it "properly calculates", required_schema: "nc" do
28+
xit "properly calculates", required_schema: "nc" do
2929
visit "/en/questions/nc-veteran-status"
3030
page_change_check(I18n.t('state_file.questions.nc_veteran_status.title_spouse'))
3131
choose "state_file_nc_veteran_status_form_primary_veteran_no"

0 commit comments

Comments
 (0)