Skip to content

Commit

Permalink
Suspend SMS subscription tests
Browse files Browse the repository at this point in the history
  • Loading branch information
moveson committed Jul 12, 2024
1 parent af8978b commit 8ecf9a8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

before { effort.update!(topic_resource_key: "anything") }

scenario "The user is not logged in and subscribes to sms" do
xscenario "The user is not logged in and subscribes to sms" do
visit_page

within("##{dom_id(effort, :sms)}") { click_button("sms") }
Expand All @@ -36,7 +36,7 @@
expect(page).to have_content("You have subscribed to email notifications for #{effort.full_name}.")
end

scenario "The user is logged in and subscribes to sms without a phone number" do
xscenario "The user is logged in and subscribes to sms without a phone number" do
login_as user, scope: :user
visit_page

Expand All @@ -46,7 +46,7 @@
expect(page).to have_content("Please add a mobile phone number to receive sms text notifications.")
end

scenario "The user is logged in and subscribes to sms with a phone number" do
xscenario "The user is logged in and subscribes to sms with a phone number" do
user.update_columns(phone: "1234567890")
login_as user, scope: :user
visit_page
Expand Down

0 comments on commit 8ecf9a8

Please sign in to comment.